diff options
Diffstat (limited to 'src/dedo.go')
-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" ) |