Fix comments in filesystem commands

This commit is contained in:
Elara 2021-11-27 00:11:37 -08:00
parent 24cfda82d7
commit a9ef386883
7 changed files with 7 additions and 7 deletions

View File

@ -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"},

View File

@ -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"},

View File

@ -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 <path...>",
Short: "Create a new directory",

View File

@ -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 <old> <new>",
Aliases: []string{"mv"},

View File

@ -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 <remote path> <local path | "-">`,
Short: "Read a file from InfiniTime",

View File

@ -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 <path...>",
Aliases: []string{"rm"},

View File

@ -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 <local path | "-"> <remote path>`,
Short: "Write a file to InfiniTime",