mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
10 lines
201 B
JavaScript
Vendored
10 lines
201 B
JavaScript
Vendored
'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;
|
|
}
|
|
};
|