forked from datawhale/whale-town-end
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getStatus(): string {
|
|
return 'Pixel Game Server is running!';
|
|
}
|
|
}
|