diff --git a/cmd/itctl/filesystem/filesystem.go b/cmd/itctl/filesystem/filesystem.go index 6206918..9e75c4d 100644 --- a/cmd/itctl/filesystem/filesystem.go +++ b/cmd/itctl/filesystem/filesystem.go @@ -23,7 +23,7 @@ import ( "go.arsenm.dev/itd/cmd/itctl/root" ) -// filesystemCmd represents the get command +// filesystemCmd represents the filesystem command var filesystemCmd = &cobra.Command{ Use: "filesystem", Aliases: []string{"fs"}, diff --git a/cmd/itctl/filesystem/list.go b/cmd/itctl/filesystem/list.go index 258f4ce..cba95fb 100644 --- a/cmd/itctl/filesystem/list.go +++ b/cmd/itctl/filesystem/list.go @@ -27,7 +27,7 @@ import ( "go.arsenm.dev/itd/api" ) -// listCmd represents the heart command +// listCmd represents the list command var listCmd = &cobra.Command{ Use: "list [path]", Aliases: []string{"ls"}, diff --git a/cmd/itctl/filesystem/mkdir.go b/cmd/itctl/filesystem/mkdir.go index 5a6c056..fc00e89 100644 --- a/cmd/itctl/filesystem/mkdir.go +++ b/cmd/itctl/filesystem/mkdir.go @@ -25,7 +25,7 @@ import ( "go.arsenm.dev/itd/api" ) -// heartCmd represents the heart command +// mkdirCmd represents the mkdir command var mkdirCmd = &cobra.Command{ Use: "mkdir ", Short: "Create a new directory", diff --git a/cmd/itctl/filesystem/move.go b/cmd/itctl/filesystem/move.go index 688594c..c2f5ce0 100644 --- a/cmd/itctl/filesystem/move.go +++ b/cmd/itctl/filesystem/move.go @@ -25,7 +25,7 @@ import ( "go.arsenm.dev/itd/api" ) -// heartCmd represents the heart command +// moveCmd represents the move command var moveCmd = &cobra.Command{ Use: "move ", Aliases: []string{"mv"}, diff --git a/cmd/itctl/filesystem/read.go b/cmd/itctl/filesystem/read.go index 76ca80e..7efd624 100644 --- a/cmd/itctl/filesystem/read.go +++ b/cmd/itctl/filesystem/read.go @@ -28,7 +28,7 @@ import ( "go.arsenm.dev/itd/api" ) -// heartCmd represents the heart command +// readCmd represents the read command var readCmd = &cobra.Command{ Use: `read `, Short: "Read a file from InfiniTime", diff --git a/cmd/itctl/filesystem/remove.go b/cmd/itctl/filesystem/remove.go index 600633d..f3482fa 100644 --- a/cmd/itctl/filesystem/remove.go +++ b/cmd/itctl/filesystem/remove.go @@ -25,7 +25,7 @@ import ( "go.arsenm.dev/itd/api" ) -// heartCmd represents the heart command +// removeCmd represents the remove command var removeCmd = &cobra.Command{ Use: "remove ", Aliases: []string{"rm"}, diff --git a/cmd/itctl/filesystem/write.go b/cmd/itctl/filesystem/write.go index c73f32f..730c0dc 100644 --- a/cmd/itctl/filesystem/write.go +++ b/cmd/itctl/filesystem/write.go @@ -29,7 +29,7 @@ import ( "go.arsenm.dev/itd/api" ) -// heartCmd represents the heart command +// writeCmd represents the write command var writeCmd = &cobra.Command{ Use: `write `, Short: "Write a file to InfiniTime",