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,11 +1,12 @@
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
// constructor() {}
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return 'Home';
return this.appService.getHello();
}
}