summaryrefslogtreecommitdiff
path: root/cmd/gotosocial/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/gotosocial/server.go')
-rw-r--r--cmd/gotosocial/server.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd/gotosocial/server.go b/cmd/gotosocial/server.go
index 8b316aca8..859292402 100644
--- a/cmd/gotosocial/server.go
+++ b/cmd/gotosocial/server.go
@@ -19,7 +19,6 @@ package main
import (
"code.superseriousbusiness.org/gotosocial/cmd/gotosocial/action/server"
- "code.superseriousbusiness.org/gotosocial/internal/config"
"github.com/spf13/cobra"
)
@@ -39,7 +38,6 @@ func serverCommands() *cobra.Command {
return run(cmd.Context(), server.Start)
},
}
- config.AddServerFlags(serverStartCmd)
serverCmd.AddCommand(serverStartCmd)
serverMaintenanceCmd := &cobra.Command{
@@ -52,7 +50,6 @@ func serverCommands() *cobra.Command {
return run(cmd.Context(), server.Maintenance)
},
}
- config.AddServerFlags(serverMaintenanceCmd)
serverCmd.AddCommand(serverMaintenanceCmd)
return serverCmd