mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 12:08:41 +08:00
7 lines
173 B
JavaScript
7 lines
173 B
JavaScript
const {readFileSync} = require('fs');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
typeDefs: readFileSync(path.join(__dirname, 'server/typeDefs.graphql'), 'utf8')
|
|
};
|