| author | |
| committer | |
| log | 218eb5f856f217e958788fcde9ac5d52d7cc75e7 |
| tree | 1bbfabea75dce447450b0c4c03272717ffbcca58 |
| parent | 7ae4d3f5b97b4d100d8bbd719f0db79c0ed993c1 |
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,3 +1,4 @@ |
| 1 | usingnamespace @import("./ascii.zig"); | 1 | usingnamespace @import("./ascii.zig"); |
| 2 | usingnamespace @import("./ansi.zig"); | 2 | usingnamespace @import("./ansi.zig"); |
| 3 | usingnamespace @import("./funcs.zig"); | 3 | usingnamespace @import("./funcs.zig"); |
| 4 | usingnamespace @import("./dep_type.zig"); |