switched to supertokens

This commit is contained in:
2022-09-07 09:12:26 +02:00
parent 40eb1da379
commit 6bb920861a
36 changed files with 1083 additions and 67663 deletions

View File

@@ -1,17 +1,10 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { AppController } from './app.controller';
import { AuthModule } from './auth/auth.module';
import { AppService } from './app.service';
@Module({
imports: [
ConfigModule.forRoot({
isGlobal: true,
expandVariables: true,
}),
AuthModule,
],
imports: [],
controllers: [AppController],
providers: [],
providers: [AppService],
})
export class AppModule {}