fediglam/src/util/lib.zig

12 lines
256 B
Zig
Raw Normal View History

2022-06-09 05:54:41 +00:00
pub const ciutf8 = @import("./ciutf8.zig");
pub const Uuid = @import("./Uuid.zig");
2022-07-18 07:03:29 +00:00
pub const DateTime = @import("./DateTime.zig");
2022-06-02 18:33:16 +00:00
pub const PathIter = @import("./PathIter.zig");
2022-06-09 05:54:41 +00:00
test {
_ = ciutf8;
_ = Uuid;
2022-06-02 18:33:16 +00:00
_ = PathIter;
2022-07-18 07:03:29 +00:00
_ = DateTime;
2022-06-09 05:54:41 +00:00
}