forked from toolshed/abra
refactor: break up cli pkg into nice small chunks
This commit is contained in:
12
cli/app/restore.go
Normal file
12
cli/app/restore.go
Normal file
@ -0,0 +1,12 @@
|
||||
package app
|
||||
|
||||
import (
|
||||
"coopcloud.tech/abra/cli/internal"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
var appRestoreCommand = &cli.Command{
|
||||
Name: "restore",
|
||||
Flags: []cli.Flag{internal.AllFlag},
|
||||
ArgsUsage: "<service> [<backup file>]",
|
||||
}
|
Reference in New Issue
Block a user