Skip to content

Commit

Permalink
fix: expose errors as export
Browse files Browse the repository at this point in the history
  • Loading branch information
trs committed Jul 23, 2018
1 parent 2a50134 commit 91be338
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ftp-srv.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
const FtpSrv = require('./src');
const FileSystem = require('./src/fs');
const errors = require('./src/errors');

module.exports = FtpSrv;
module.exports.FtpSrv = FtpSrv;
module.exports.FileSystem = FileSystem;
module.exports.ftpErrors = errors;

0 comments on commit 91be338

Please sign in to comment.