feat: build finite state machine for sessions

This commit is contained in:
Paul Makles
2022-06-28 13:20:08 +01:00
parent 1cfcb20d4d
commit 80f4bb3d98
6 changed files with 235 additions and 28 deletions

View File

@@ -5,3 +5,5 @@ declare type Session = {
name: string;
user_id: string;
};
declare type SessionPrivate = Session;