summaryrefslogtreecommitdiff
path: root/web-timeplot/src/data/base-source.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-timeplot/src/data/base-source.js')
-rw-r--r--web-timeplot/src/data/base-source.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/web-timeplot/src/data/base-source.js b/web-timeplot/src/data/base-source.js
deleted file mode 100644
index 55dbdc3..0000000
--- a/web-timeplot/src/data/base-source.js
+++ /dev/null
@@ -1,21 +0,0 @@
-export class BaseSource {
- constructor(config = {}) {
- this.config = { ...config };
- this.running = false;
- }
-
- start() {
- this.running = true;
- }
-
- stop() {
- this.running = false;
- }
-
- updateConfig(nextConfig) {
- this.config = {
- ...this.config,
- ...nextConfig,
- };
- }
-}