authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-21 16:12:08 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-21 16:12:08 -08:00
log3d495960995655761c76ea6ada0d772af7d1d4e0
tree510618dce9e6f5621c24c59cd5df18a6fac5d8f7
parent90cb4cc5acf8f281649ee7c305e73a2bafc68503

temporarily remove the add command


2 files changed, 3 insertions(+), 1 deletions(-)

README.md+2
......@@ -42,6 +42,7 @@ zigmod init [name] [entry_file]
4242- `[entry_file]` defaults to `src/main.zig`
4343- This command will create a `zig.mod` file in the root of your project. It is in yaml syntax.
4444
45<!--
4546### `add` command
4647```
4748zigmod add <type> <path>
......@@ -49,6 +50,7 @@ zigmod add <type> <path>
4950
5051- `<type>` is the type of package we're adding.
5152- `<path>` is the URL to the package you'd like to include.
53-->
5254
5355#### Available types
5456- `git`
src/main.zig+1-1
......@@ -8,7 +8,7 @@ const u = @import("./util/index.zig");
88
99const commands = struct {
1010 const init = @import("./cmd_init.zig");
11 const add = @import("./cmd_add.zig");
11 // const add = @import("./cmd_add.zig");
1212 const fetch = @import("./cmd_fetch.zig");
1313};
1414