Browse Source

[strategy] created endpoint strategy

master
Muthu Kumar 6 years ago
parent
commit
46911c09ec
  1. 13
      index.js

13
index.js

@ -0,0 +1,13 @@
const Strategy = require('@klenty/gunner/Strategy');
const resources = require('./lib/resources');
const compiler = require('./lib/compiler');
const endpointStrategy =
new Strategy(
'endpoint',
resources,
compiler,
);
module.exports = endpointStrategy;
Loading…
Cancel
Save