mirror of
https://github.com/movie-web/backend.git
synced 2025-09-13 12:23:25 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f5cec7ba24 | ||
|
db00030df0 |
@@ -1,3 +1,4 @@
|
||||
import { indexRouter } from '@/routes';
|
||||
import { loginAuthRouter } from '@/routes/auth/login';
|
||||
import { manageAuthRouter } from '@/routes/auth/manage';
|
||||
import { metaRouter } from '@/routes/meta';
|
||||
@@ -25,4 +26,5 @@ export async function setupRoutes(app: FastifyInstance) {
|
||||
await app.register(userSettingsRouter.register);
|
||||
await app.register(userGetRouter.register);
|
||||
await app.register(metricsRouter.register);
|
||||
await app.register(indexRouter.register);
|
||||
}
|
||||
|
14
src/routes/index.ts
Normal file
14
src/routes/index.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { version } from '@/config';
|
||||
import { handle } from '@/services/handler';
|
||||
import { makeRouter } from '@/services/router';
|
||||
|
||||
export const indexRouter = makeRouter((app) => {
|
||||
app.get(
|
||||
'/',
|
||||
handle(async () => {
|
||||
return {
|
||||
message: `Backend is working as expected (${version})`,
|
||||
};
|
||||
}),
|
||||
);
|
||||
});
|
Reference in New Issue
Block a user