9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
|
|
import { Injectable } from '@nestjs/common';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class AppService {
|
||
|
|
getHello(): string {
|
||
|
|
return 'Petmaster API is running';
|
||
|
|
}
|
||
|
|
}
|