import { FeedCache } from "@snort/shared"; import { Connection } from "connection"; import { RelayMetrics } from "cache"; export class RelayMetricHandler { readonly #cache: FeedCache; constructor(cache: FeedCache) { this.#cache = cache; } onDisconnect(c: Connection, code: number) {} }