Files
whale-town-end/src/app.service.ts

9 lines
160 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getStatus(): string {
return 'Pixel Game Server is running!';
}
}