Spaces:
Sleeping
Sleeping
File size: 193 Bytes
22df730 |
1 2 3 4 5 6 7 8 |
import { Controller } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
}
|