mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-10-14 05:19:19 +00:00
12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
|
|
@Controller()
|
|
export class RootController {
|
|
@Get()
|
|
getWelcome() {
|
|
return {
|
|
message: '欢迎使用晶灵核心',
|
|
};
|
|
}
|
|
}
|