-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
kimhappy
committed
Nov 20, 2024
1 parent
ada779f
commit 11440c0
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule MusicWith
updated
26 files
Submodule MusicWithServer
updated
16 files
+10 −5 | Cargo.toml | |
+36 −2 | README.md | |
+31 −0 | src/chat/broad.rs | |
+27 −0 | src/chat/client.rs | |
+22 −0 | src/chat/mod.rs | |
+104 −0 | src/chat/state.rs | |
+12 −0 | src/env.rs | |
+10 −74 | src/main.rs | |
+45 −0 | src/route/callback.rs | |
+125 −0 | src/route/chat.rs | |
+19 −0 | src/route/login.rs | |
+97 −0 | src/route/lyrics.rs | |
+9 −0 | src/route/mod.rs | |
+0 −3 | src/util/env_var.rs | |
+0 −2 | src/util/mod.rs | |
+158 −0 | test/chat_client.py |