mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-13 23:35:39 +01:00
add info endpoint
This commit is contained in:
15
backend/src/routes/api/api.module.ts
Normal file
15
backend/src/routes/api/api.module.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { AuthModule } from './auth/auth.module';
|
||||
import { ExperimentModule } from './experiment/experiment.module';
|
||||
import { PrefModule } from './pref/pref.module';
|
||||
import { InfoModule } from './info/info.module';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
AuthModule,
|
||||
PrefModule,
|
||||
ExperimentModule,
|
||||
InfoModule,
|
||||
]
|
||||
})
|
||||
export class PicsurApiModule {}
|
||||
Reference in New Issue
Block a user