refactor(Commands): Renamed StartBackupProc

This commit is contained in:
netbenix 2021-12-31 17:15:58 +01:00
parent 2fb37a9953
commit bb796d4cf2
2 changed files with 3 additions and 2 deletions

View file

@ -12,7 +12,7 @@ import (
"time" "time"
) )
func NewStartBackupProc() *cli.Command { func StartBackupProc() *cli.Command {
logger := Logging.Logger("backup") logger := Logging.Logger("backup")
return &cli.Command{ return &cli.Command{

View file

@ -21,7 +21,8 @@ func main() {
}, },
Copyright: "(c) 2021-2022 netbenix", Copyright: "(c) 2021-2022 netbenix",
Commands: []*cli.Command{ Commands: []*cli.Command{
Commands.NewStartBackupProc(), Commands.StartBackupProc(),
Commands.GenerateNewConfigs(),
}, },
} }