2 files changed, 11 insertions(+), 0 deletions(-)
src/util/dep_type.zig created+10
| ... | ... | @@ -0,0 +1,10 @@ |
| 1 | const std = @import("std"); |
| 2 | |
| 3 | const u = @import("index.zig"); |
| 4 | |
| 5 | // |
| 6 | // |
| 7 | |
| 8 | pub const DepType = enum { |
| 9 | git, // https://git-scm.com/ |
| 10 | }; |
src/util/index.zig+1
| ... | ... | @@ -1,3 +1,4 @@ |
| 1 | 1 | usingnamespace @import("./ascii.zig"); |
| 2 | 2 | usingnamespace @import("./ansi.zig"); |
| 3 | 3 | usingnamespace @import("./funcs.zig"); |
| 4 | usingnamespace @import("./dep_type.zig"); |