mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 13:39:41 +01:00
15 lines
243 B
Go
15 lines
243 B
Go
|
|
package cmd
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/jkaninda/mysql-bkup/pkg"
|
||
|
|
"github.com/spf13/cobra"
|
||
|
|
)
|
||
|
|
|
||
|
|
var S3MountCmd = &cobra.Command{
|
||
|
|
Use: "s3mount",
|
||
|
|
Short: "Mount AWS S3 storage",
|
||
|
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
|
pkg.S3Mount()
|
||
|
|
},
|
||
|
|
}
|