13 lines
235 B
Go
13 lines
235 B
Go
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>]",
|
|
}
|