Skip to content

Commit

Permalink
fix module structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Peinhardt authored and Benjamin Peinhardt committed May 24, 2023
1 parent 84d64f8 commit eb30968
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/gsv.gleam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import internal/ast
import internal/token
import gsv/internal/ast
import gsv/internal/token
import gleam/list
import gleam/string

Expand Down
2 changes: 1 addition & 1 deletion src/internal/ast.gleam → src/gsv/internal/ast.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import gleam/list
import gleam/result
import internal/token.{CR, Comma, CsvToken, Doublequote, LF, Textdata}
import gsv/internal/token.{CR, Comma, CsvToken, Doublequote, LF, Textdata}

type ParseState {
Beginning
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions test/gsv_test.gleam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gleeunit
import gleeunit/should
import internal/token.{CR, Comma, Doublequote, LF, Textdata, scan}
import internal/ast.{parse}
import gsv/internal/token.{CR, Comma, Doublequote, LF, Textdata, scan}
import gsv/internal/ast.{parse}
import gsv.{Unix, Windows}
import gleam/list
import gleam/result
Expand Down

0 comments on commit eb30968

Please sign in to comment.