mirror of
https://github.com/caprover/caprover
synced 2026-08-10 09:41:02 +00:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
"use strict";
|
|
class BaseApi {
|
|
constructor(status, description) {
|
|
this.status = status;
|
|
this.description = description;
|
|
//
|
|
}
|
|
}
|
|
module.exports = BaseApi;
|
|
//# sourceMappingURL=BaseApi.js.map
|