Skip to content

Commit

Permalink
Removed extensions from index until they exist
Browse files Browse the repository at this point in the history
  • Loading branch information
binarymist committed Oct 31, 2018
1 parent 2e1e7fb commit 16225c9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const request = require('request');
const requestPromise = require('request-promise-native');

const Acsrf = require('./acsrf');
const AjaxSpider = require('./ajaxSpider');
// const AjaxSpider = require('./ajaxSpider');
const Ascan = require('./ascan');
const Authentication = require('./authentication');
const Authorization = require('./authorization');
Expand All @@ -31,9 +31,9 @@ const Context = require('./context');
const Core = require('./core');
const ForcedUser = require('./forcedUser');
const HttpSessions = require('./httpSessions');
const ImportLogFiles = require('./importLogFiles');
// const ImportLogFiles = require('./importLogFiles');
const Params = require('./params');
const Pnh = require('./pnh');
// const Pnh = require('./pnh');
const Pscan = require('./pscan');
const Script = require('./script');
const Search = require('./search');
Expand All @@ -58,7 +58,7 @@ function ClientApi(options) {
this.req = request.defaults(requestOptions);
this.reqPromise = requestPromise.defaults(requestOptions);
this.acsrf = new Acsrf(this);
this.ajaxSpider = new AjaxSpider(this);
// this.ajaxSpider = new AjaxSpider(this);
this.ascan = new Ascan(this);
this.authentication = new Authentication(this);
this.authorization = new Authorization(this);
Expand All @@ -68,9 +68,9 @@ function ClientApi(options) {
this.core = new Core(this);
this.forcedUser = new ForcedUser(this);
this.httpSessions = new HttpSessions(this);
this.importLogFiles = new ImportLogFiles(this);
// this.importLogFiles = new ImportLogFiles(this);
this.params = new Params(this);
this.pnh = new Pnh(this);
// this.pnh = new Pnh(this);
this.pscan = new Pscan(this);
this.script = new Script(this);
this.search = new Search(this);
Expand Down

0 comments on commit 16225c9

Please sign in to comment.