Compare commits

..

1 Commits

Author SHA1 Message Date
unknown 69a44d1734 handmade dummy S3 local dev server 2022-05-01 02:41:58 -03:00
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import (
) )
func init() { func init() {
migrateCommand := &cobra.Command{ s3Command := &cobra.Command{
Use: "hmns3 [storage folder]", Use: "hmns3 [storage folder]",
Short: "Run a local s3 server that stores in the filesystem", Short: "Run a local s3 server that stores in the filesystem",
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
@ -64,7 +64,7 @@ func init() {
}, },
} }
website.WebsiteCommand.AddCommand(migrateCommand) website.WebsiteCommand.AddCommand(s3Command)
} }