/** * NestGdatastoreClientController is a testing controller that verifies that * NestGdatastoreModule was generated properly. * * You can quickly verify this by running `npm run start:dev`, and then * connecting to `http://localhost:3000` with your browser. It should return * a custom message like `Hello from NestGdatastoreModule`. * * Once you begin customizing NestGdatastoreModule, you'll probably want * to delete this controller. */ import { Controller, Get } from '@nestjs/common'; import { NestGdatastoreService } from '../nest-gdatastore.service'; @Controller() export class NestGdatastoreClientController { constructor(private readonly nestGdatastoreService: NestGdatastoreService) {} }