mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
const path = require('path');
|
|
const { readFileSync } = require('fs');
|
|
|
|
const file = path.join(__dirname, 'schema.gql');
|
|
|
|
module.exports = readFileSync(file, 'utf-8');
|