1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 13:53:51 +03:00
copilot/packages/cp-gql-schema/index.js

7 lines
167 B
JavaScript
Raw 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');