Files
pg-bkup/cmd/s3mount.go

14 lines
207 B
Go
Raw Normal View History

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) {
2024-07-31 22:32:07 +02:00
//pkg.S3Mount()
},
}