This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-auth-server/src/app.controller.ts
2022-03-20 19:51:42 +02:00

11 lines
178 B
TypeScript

import { Controller, Get, Redirect } from '@nestjs/common';
@Controller()
export class AppController {
@Get()
@Redirect('/account/general')
getHello() {
return;
}
}