core: add a TODO regarding module API

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-04-09 18:53:18 -07:00
parent f369b31137
commit 3583e1754f

View file

@ -1,6 +1,9 @@
const std = @import("std");
const mach = @import("main.zig");
// TODO(important): mach.core has a lot of standard Zig APIs, and some global variables, which are
// part of its old API design. We should elevate them into this module instead.
pub const name = .mach_core;
pub const Mod = mach.Mod(@This());