diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-04-17 18:23:20 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-04-17 18:23:20 -0400 |
| commit | 88ec53bed3a487a26d747d84015ae2bd0ecafd4a (patch) | |
| tree | 93fcb4e79a889ba5c8dbeef34105367f382c22cb /src/server/check.odin | |
| parent | 81c84f9683a40d60c0d1ae347c175d9205d186f8 (diff) | |
Move packages to new base collection
Diffstat (limited to 'src/server/check.odin')
| -rw-r--r-- | src/server/check.odin | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/check.odin b/src/server/check.odin index a3804df..5f2bdc7 100644 --- a/src/server/check.odin +++ b/src/server/check.odin @@ -1,14 +1,15 @@ package server +import "base:intrinsics" +import "base:runtime" + import "core:encoding/json" import "core:fmt" -import "core:intrinsics" import "core:log" import "core:mem" import "core:os" import "core:path/filepath" import path "core:path/slashpath" -import "core:runtime" import "core:slice" import "core:strconv" import "core:strings" |