Sample Gunner Strategy implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
229 B

6 years ago
const resources = require('../resources');
module.exports = async (unit, state) => {
6 years ago
const instances = {
request: state['@start'].request,
db: state['@start'].db,
};
return resources[unit.type].do(unit, instances);
};