refactor: break up cli pkg into nice small chunks

This commit is contained in:
2021-08-02 02:10:41 +01:00
parent c2f53e493e
commit 30d11f48a7
29 changed files with 787 additions and 649 deletions

8
cli/app/logs.go Normal file
View File

@ -0,0 +1,8 @@
package app
import "github.com/urfave/cli/v2"
var appLogsCommand = &cli.Command{
Name: "logs",
ArgsUsage: "[<service>]",
}