From f66b680bce752b389f14adf370261b8dd5e04495 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 30 Dec 2024 18:32:10 -0300 Subject: src/dedo.go: Sort imports --- src/dedo.go | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'src/dedo.go') 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" ) -- cgit v1.2.3