9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import {ChildControllers, Controller} from '@overnightjs/core';
|
|
|
|
import {Github} from './Github.js';
|
|
import {Google} from './Google.js';
|
|
|
|
@Controller('oauth')
|
|
@ChildControllers([new Google(), new Github()])
|
|
export class Oauth {}
|