mirror of
https://github.com/tedkulp/vidgrab
synced 2026-04-20 21:44:25 -04:00
initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { Controller, Get } from '@nestjs/common';
|
||||
|
||||
import { Message } from '@vidgrab2/api-interfaces';
|
||||
|
||||
import { AppService } from './app.service';
|
||||
|
||||
@Controller()
|
||||
export class AppController {
|
||||
constructor(private readonly appService: AppService) {}
|
||||
|
||||
@Get('hello')
|
||||
getData(): Message {
|
||||
return this.appService.getData();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user