fix: file upload and OAuth2 (#10)
This commit is contained in:
@ -2,7 +2,6 @@ import { FastifyPluginAsync } from 'fastify'
|
||||
|
||||
import { usersService } from './users/index.js'
|
||||
import { guildsService } from './guilds/index.js'
|
||||
import { uploadsService } from './uploads/index.js'
|
||||
import { channelsService } from './channels/index.js'
|
||||
import { messagesService } from './messages/index.js'
|
||||
|
||||
@ -10,6 +9,5 @@ export const services: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(channelsService)
|
||||
await fastify.register(guildsService)
|
||||
await fastify.register(messagesService)
|
||||
await fastify.register(uploadsService)
|
||||
await fastify.register(usersService)
|
||||
}
|
||||
|
Reference in New Issue
Block a user