Add planned start time

This commit is contained in:
2023-06-25 23:33:34 +01:00
parent ec2ef2142b
commit 602b4c5d0d
10 changed files with 69 additions and 18 deletions

View File

@ -11,6 +11,12 @@ import { StreamPage } from "pages/stream-page";
import { ChatPopout } from "pages/chat-popout";
import { LoginStore } from "login";
export enum StreamState {
Live = "live",
Ended = "ended",
Planned = "planned"
}
export const System = new NostrSystem({});
export const Login = new LoginStore();