| author | |
| committer | |
| log | 281e1b232cfdc1bff350751aed201b3889ad8e1a |
| tree | 43fbc1114e64dbf3d0da67dbf02113283d074f79 |
| parent | 218eb5f856f217e958788fcde9ac5d52d7cc75e7 |
2 files changed, 14 insertions(+), 0 deletions(-)
src/util/dep.zig created+13| ... | ... | @@ -0,0 +1,13 @@ |
| 1 | const std = @import("std"); | |
| 2 | ||
| 3 | const u = @import("index.zig"); | |
| 4 | ||
| 5 | // | |
| 6 | // | |
| 7 | ||
| 8 | pub const Dep = struct { | |
| 9 | const Self = @This(); | |
| 10 | ||
| 11 | type: u.DepType, | |
| 12 | path: []const u8, | |
| 13 | }; |
src/util/index.zig+1| ... | ... | @@ -2,3 +2,4 @@ usingnamespace @import("./ascii.zig"); |
| 2 | 2 | usingnamespace @import("./ansi.zig"); |
| 3 | 3 | usingnamespace @import("./funcs.zig"); |
| 4 | 4 | usingnamespace @import("./dep_type.zig"); |
| 5 | usingnamespace @import("./dep.zig"); |