diff --git a/README.md b/README.md index 34db5a61f3d6c5e85f30d840dbeb53d17bba773f..b562fd278aa8058a47e541512b79a01c694fc665 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ zigmod init [name] [entry_file] - `[entry_file]` defaults to `src/main.zig` - This command will create a `zig.mod` file in the root of your project. It is in yaml syntax. + #### Available types - `git` diff --git a/src/main.zig b/src/main.zig index b7652a2d7c528c7fa0d2d1b25cc5fe83f22b437b..78dc33ace2c561f795fb23c27e473d4d96571ed9 100644 --- a/src/main.zig +++ b/src/main.zig @@ -8,7 +8,7 @@ const u = @import("./util/index.zig"); const commands = struct { const init = @import("./cmd_init.zig"); - const add = @import("./cmd_add.zig"); + // const add = @import("./cmd_add.zig"); const fetch = @import("./cmd_fetch.zig"); };