This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
qoverflow/server/utils/question/index.js

9 lines
218 B
JavaScript

const getAnswer = require('./getAnswer');
const getQuestion = require('./getQuestion');
const refreshQuestion = require('./refreshQuestion');
module.exports = {
getAnswer,
getQuestion,
refreshQuestion,
};