Started converting some of the backend over to Typescript, still trying to figure out a overall file strucure, in terms of adding the ability to have multiple backend fileserver options

This commit is contained in:
subnub
2020-04-12 17:40:17 -04:00
parent 306e519eaa
commit cf9ad3a632
71 changed files with 3930 additions and 180 deletions
+8
View File
@@ -0,0 +1,8 @@
"use strict";
class InternalServerError extends Error {
constructor(args) {
super(args);
this.code = 500;
}
}
module.exports = InternalServerError;