1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-14 23:30:05 +02:00
copilot/packages/cp-gql-schema/index.js

7 lines
167 B
JavaScript
Raw Permalink Normal View History

const path = require('path');
const { readFileSync } = require('fs');
const file = path.join(__dirname, 'schema.gql');
2017-05-27 19:35:38 +03:00
module.exports = readFileSync(file, 'utf-8');