Files
pg-bkup/cmd/s3mount.go
2024-07-31 22:32:07 +02:00

14 lines
207 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var S3MountCmd = &cobra.Command{
Use: "s3mount",
Short: "Mount AWS S3 storage",
Run: func(cmd *cobra.Command, args []string) {
//pkg.S3Mount()
},
}