Skip to content

Commit

Permalink
格式化 imports
Browse files Browse the repository at this point in the history
  • Loading branch information
timandy committed Feb 20, 2024
1 parent d846e94 commit 3141ae3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package main

import (
"fmt"
"mysqlsed/sed"
"os"

"mysqlsed/sed"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion sed/ReplaceToken_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package sed

import (
"github.com/stretchr/testify/assert"
"testing"

"github.com/stretchr/testify/assert"
)

func TestResolveReplaceToken(t *testing.T) {
Expand Down
3 changes: 2 additions & 1 deletion sed/Sed.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import (
"errors"
"fmt"
"io"
"mysqlsed/sqlutil"
"os"
"strings"

"mysqlsed/sqlutil"
)

const (
Expand Down
1 change: 1 addition & 0 deletions sqlutil/SqlUtil.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package sqlutil
import (
"errors"
"fmt"

"github.com/xwb1989/sqlparser"
)

Expand Down

0 comments on commit 3141ae3

Please sign in to comment.