crystelf-core/src/root/root.controller.ts
Jerry 4100b4f0aa nest初始化
feat:配置模块
feat:路径模块
2025-07-24 14:23:28 +08:00

12 lines
190 B
TypeScript

import { Controller, Get } from '@nestjs/common';
@Controller()
export class RootController {
@Get()
getWelcome() {
return {
message: '欢迎使用晶灵核心',
};
}
}