Skip to content

Instantly share code, notes, and snippets.

View martijnvdbrug's full-sized avatar

Martijn martijnvdbrug

View GitHub Profile
@martijnvdbrug
martijnvdbrug / app.module.ts
Last active March 1, 2019 12:58
app.module.ts used for Google Cloud Function + NestJS POC
import {DocumentNode} from 'graphql';
import {Module} from '@nestjs/common';
import { TeslaModule } from './tesla/tesla.module';
import * as fs from 'fs';
import glob = require('glob');
@Module({
imports: [
TeslaModule
],