feat(services): add GET /channels/[channelId]
This commit is contained in:
@ -3,9 +3,11 @@ 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'
|
||||
|
||||
export const services: FastifyPluginAsync = async (fastify) => {
|
||||
await fastify.register(usersService)
|
||||
await fastify.register(channelsService)
|
||||
await fastify.register(guildsService)
|
||||
await fastify.register(uploadsService)
|
||||
await fastify.register(usersService)
|
||||
}
|
||||
|
Reference in New Issue
Block a user