mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 16:55:12 +08:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
const {readFileSync} = require('fs');
|
|
const path = require('path');
|
|
const hooks = require('./server/hooks');
|
|
|
|
module.exports = {
|
|
typeDefs: readFileSync(path.join(__dirname, 'server/typeDefs.graphql'), 'utf8'),
|
|
hooks,
|
|
};
|