summaryrefslogtreecommitdiff
path: root/src/termio.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-07-13 09:29:54 -0700
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-07-13 15:19:37 -0700
commit49c92fd0e67592fc9eebab4540db7de426b0283e (patch)
treeb4a1e55769472f71dc5d6eb11f9ed664bade205d /src/termio.zig
parent8a5826b5253a17a78e725e51f1f8af8df367f13b (diff)
termio: rename Exec to Termio throughout
Diffstat (limited to 'src/termio.zig')
-rw-r--r--src/termio.zig7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/termio.zig b/src/termio.zig
index 45382cda1..e0b3efb28 100644
--- a/src/termio.zig
+++ b/src/termio.zig
@@ -5,15 +5,10 @@
pub usingnamespace @import("termio/message.zig");
pub const Exec = @import("termio/Exec.zig");
pub const Options = @import("termio/Options.zig");
+pub const Termio = @import("termio/Termio.zig");
pub const Thread = @import("termio/Thread.zig");
pub const Mailbox = Thread.Mailbox;
-/// The implementation to use for the IO. This is just "exec" for now but
-/// this is somewhat pluggable so that in the future we can introduce other
-/// options for other platforms (i.e. wasm) or even potentially a vtable
-/// implementation for runtime polymorphism.
-pub const Impl = Exec;
-
test {
@import("std").testing.refAllDecls(@This());