commit 20/08/2025

This commit is contained in:
2025-08-20 16:42:06 +07:00
parent 4f0a7a1560
commit 0c84449b77
28 changed files with 966 additions and 42 deletions

View File

@@ -1,7 +1,7 @@
import audio.AudioPlayer
import content.ContentCache
import org.tinylog.Logger
import web.WebApp
fun main() {
@@ -9,5 +9,12 @@ fun main() {
val audioPlayer = AudioPlayer(44100) // 44100 Hz sampling rate
audioPlayer.InitAudio(1)
val content = ContentCache()
val web = WebApp(3030,
listOf(
Pair("admin", "password"),
Pair("user", "password")
)
)
web.Start()
}