mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
// base class that users should extend if they are making their own
|
||
|
|
// server implementation
|
||
|
|
module.exports = class BaseServer {
|
||
|
|
constructor(server) {
|
||
|
|
this.server = server;
|
||
|
|
}
|
||
|
|
};
|