blog-be/src/hello.ts

8 lines
121 B
TypeScript
Raw Normal View History

2021-04-17 13:54:26 +08:00
import { Field, ObjectType } from '@nestjs/graphql';
@ObjectType()
export class Hello {
@Field()
message: string;
}