diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-01-06 23:50:46 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-01-06 23:50:46 +0400 |
commit | 0d42010b86e9e54714d6ae799e19bd07b20e2908 (patch) | |
tree | cf061cc61d9d9e165da427a6521398b52ea88d28 | |
parent | 83219921b7bf8563e041dab6f4030dd29e2b0076 (diff) |
import files sorted alphabetically
-rw-r--r-- | src/main.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.go b/src/main.go index e4bae4e..c087df6 100644 --- a/src/main.go +++ b/src/main.go @@ -1,14 +1,14 @@ package main import ( + "bufio" "fmt" + "io" + "os" "regexp" + "slices" "strconv" "strings" - "bufio" - "os" - "io" - "slices" ) type Operation struct { |