Add redirects
All checks were successful
Gitea Actions Demo / build (push) Successful in 5m20s

This commit is contained in:
2023-12-04 16:46:16 -07:00
parent 6ecdd5a0b8
commit d00fe6fdb7
11 changed files with 82 additions and 50 deletions

View File

@@ -0,0 +1,9 @@
import { Controller, Get } from '@nestjs/common';
@Controller({ host: "requiredreading.dev" })
export class RequiredReadingController {
@Get('')
getRoot() {
return "Hello required reading"
}
}