Rename files
This commit is contained in:
15
packages/system/src/relay-metric-handler.ts
Normal file
15
packages/system/src/relay-metric-handler.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { FeedCache } from "@snort/shared";
|
||||
import { Connection } from "connection";
|
||||
import { RelayMetrics } from "cache";
|
||||
|
||||
export class RelayMetricHandler {
|
||||
readonly #cache: FeedCache<RelayMetrics>;
|
||||
|
||||
constructor(cache: FeedCache<RelayMetrics>) {
|
||||
this.#cache = cache;
|
||||
}
|
||||
|
||||
onDisconnect(c: Connection, code: number) {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user