rename lib to src

This commit is contained in:
2022-05-25 09:42:42 +03:00
committed by Motiejus Jakštys
parent b126b95885
commit c602b7a039
20 changed files with 14 additions and 6 deletions

10
src/unix2db/main.zig Normal file
View File

@@ -0,0 +1,10 @@
const std = @import("std");
const flags = @import("../flags.zig");
pub fn main() !void {}
const testing = std.testing;
test "stub" {
_ = flags;
}