diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-05-20 15:41:35 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-05-20 19:28:06 -0400 |
| commit | a9df1b1cde1037d030f4e823ce576dfd9bcf9c97 (patch) | |
| tree | e1f14e74fb0d8dbcd229c6abb21fbb21697b075b /examples/all | |
| parent | df5e64beebd02971292838acc4150471620bae24 (diff) | |
Rename `core:encoding/ansi` to `core:terminal/ansi`
Diffstat (limited to 'examples/all')
| -rw-r--r-- | examples/all/all_main.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index 97ecfee45..de037f6cd 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -58,7 +58,6 @@ import trace "core:debug/trace" import dynlib "core:dynlib" import net "core:net" -import ansi "core:encoding/ansi" import base32 "core:encoding/base32" import base64 "core:encoding/base64" import cbor "core:encoding/cbor" @@ -130,6 +129,7 @@ import sync "core:sync" import testing "core:testing" import terminal "core:terminal" +import ansi "core:terminal/ansi" import edit "core:text/edit" import i18n "core:text/i18n" @@ -203,7 +203,6 @@ _ :: pe _ :: trace _ :: dynlib _ :: net -_ :: ansi _ :: base32 _ :: base64 _ :: csv @@ -260,6 +259,7 @@ _ :: strings _ :: sync _ :: testing _ :: terminal +_ :: ansi _ :: scanner _ :: i18n _ :: match |