/** * NestGdatastoreClientModule is a testing module 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 module. */ import { Module } from '@nestjs/common'; import { NestGdatastoreClientController } from './nest-gdatastore-client.controller'; import { NestGdatastoreModule } from '../nest-gdatastore.module'; @Module({ controllers: [NestGdatastoreClientController], imports: [ NestGdatastoreModule.register({ DATASTOREKEY: 'bla', DATASTORE_NAMESPACE: 'bla2', PROJECT_ID: 'bal3', }), ], }) export class NestGdatastoreClientModule {}