Removed GraphQL

This commit is contained in:
2022-09-26 16:14:59 +09:00
parent 7c82a98686
commit fb73dba780
5 changed files with 37 additions and 710 deletions

View File

@ -12,7 +12,6 @@ import (
"github.com/animenotifier/notify.moe/assets"
"github.com/animenotifier/notify.moe/pages"
"github.com/animenotifier/notify.moe/server/auth"
"github.com/animenotifier/notify.moe/server/graphql"
"github.com/animenotifier/notify.moe/server/https"
"github.com/animenotifier/notify.moe/server/middleware"
)
@ -69,9 +68,6 @@ func New() *aero.Application {
// Authentication
auth.Install(app)
// GraphQL
graphql.Install(app)
// Close the database node on shutdown
app.OnEnd(arn.Node.Close)