Build a websocket topics framework

This commit is contained in:
Alex Gleason
2023-05-20 19:39:05 -05:00
parent 02160f8c9e
commit 3ffad1df29
6 changed files with 116 additions and 21 deletions

View File

@@ -31,6 +31,8 @@ interface AppEnv extends HonoEnv {
pubkey?: string;
/** Hex secret key for the current user. Optional, but easiest way to use legacy Mastodon apps. */
seckey?: string;
/** UUID from the access token. Used for WebSocket event signing. */
session?: string;
};
}