[server] basic public share creation

This commit is contained in:
Abhishek Shroff
2024-10-28 00:37:40 +05:30
parent 9dfb1c9e55
commit cf13a7488e
7 changed files with 151 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import (
"path"
"github.com/shroff/phylum/server/internal/command/fs"
"github.com/shroff/phylum/server/internal/command/public.go"
"github.com/shroff/phylum/server/internal/command/schema"
"github.com/shroff/phylum/server/internal/command/serve"
storagecmd "github.com/shroff/phylum/server/internal/command/storage"
@@ -64,6 +65,7 @@ func SetupCommand() {
user.SetupCommand(),
storagecmd.SetupCommand(),
fs.SetupCommand(),
public.SetupCommand(),
serve.SetupCommand(),
}...)
rootCmd.Execute()