diff options
author | 2021-02-27 22:57:50 +0100 | |
---|---|---|
committer | 2021-02-27 22:57:50 +0100 | |
commit | fbf52fe84be071e90ea81e5f7951da2a1ece0dbf (patch) | |
tree | d2ebbef9a06a9b978c80fccfdc63deb99fb64db1 /cmd/server/main.go | |
parent | first commit (diff) | |
download | gotosocial-fbf52fe84be071e90ea81e5f7951da2a1ece0dbf.tar.xz |
messing around a bit
Diffstat (limited to 'cmd/server/main.go')
-rw-r--r-- | cmd/server/main.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/server/main.go b/cmd/server/main.go new file mode 100644 index 000000000..e62f7f96d --- /dev/null +++ b/cmd/server/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "github.com/gotosocial/server/internal/api" +) + +func main() { + router := api.NewRouter() + router.Route() +} |