diff options
author | 2021-03-09 17:03:40 +0100 | |
---|---|---|
committer | 2021-03-09 17:03:40 +0100 | |
commit | 9a79d176c91de59a409d06efc8837c1d8f38b5c0 (patch) | |
tree | f4582b8eb2f57cfa356b593420308a462a2811db /cmd | |
parent | add note struct (diff) | |
download | gotosocial-9a79d176c91de59a409d06efc8837c1d8f38b5c0.tar.xz |
moving stuff around, stubbing interfaces
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/gotosocial/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gotosocial/main.go b/cmd/gotosocial/main.go index 664ed2ea9..14fd35eec 100644 --- a/cmd/gotosocial/main.go +++ b/cmd/gotosocial/main.go @@ -26,7 +26,7 @@ import ( "github.com/gotosocial/gotosocial/internal/config" "github.com/gotosocial/gotosocial/internal/db" "github.com/gotosocial/gotosocial/internal/log" - "github.com/gotosocial/gotosocial/internal/server" + "github.com/gotosocial/gotosocial/internal/gotosocial" "github.com/sirupsen/logrus" "github.com/urfave/cli/v2" @@ -105,7 +105,7 @@ func main() { Name: "start", Usage: "start the gotosocial server", Action: func(c *cli.Context) error { - return runAction(c, server.Run) + return runAction(c, gotosocial.Run) }, }, }, |