This commit is contained in:
2025-07-27 19:49:35 -04:00
parent 2302290d34
commit 941c8400c0
23 changed files with 293 additions and 50 deletions

View File

@@ -0,0 +1,16 @@
import { ServerContentBase } from "../ContentBase.ts";
import type Profile from "../profiles/profile.ts";
class Presence {
}
export class PresenceBase extends ServerContentBase {
#presenceMap: Map<Profile, Presence> = new Map();
getPresence() {
}
}