diff options
author | EuAndreh <eu@euandre.org> | 2024-12-30 18:32:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-30 18:32:10 -0300 |
commit | f66b680bce752b389f14adf370261b8dd5e04495 (patch) | |
tree | ac91e8fb5888b99fde9240f7e7c3fb94d89bc2a8 | |
parent | src/dedo.go: Remove Options.Timeout option (diff) | |
download | dedo-f66b680bce752b389f14adf370261b8dd5e04495.tar.gz dedo-f66b680bce752b389f14adf370261b8dd5e04495.tar.xz |
src/dedo.go: Sort imports
-rw-r--r-- | src/dedo.go | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/dedo.go b/src/dedo.go index b806fc3..cffd891 100644 --- a/src/dedo.go +++ b/src/dedo.go @@ -1,30 +1,31 @@ package dedo import ( - "io/fs" + "bytes" + "encoding/binary" "errors" + "flag" "fmt" "hash/fnv" + "io" + "io/fs" + "io/ioutil" "log" + "math/rand" "os" "runtime" "runtime/debug" + "runtime/pprof" + "sort" + "strconv" "strings" "sync" - "time" - "unsafe" - "bytes" - "sort" "syscall" - "io" - "encoding/binary" - "flag" - "io/ioutil" - "math/rand" - "runtime/pprof" - "strconv" + "time" "unicode" "unicode/utf8" + "unsafe" + g "gobang" ) |