Initial commit

This commit is contained in:
BarsTiger
2023-11-16 22:49:59 +02:00
commit 653711aba3
20 changed files with 386 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
from nicegui import ui
from . import gui
from rich.traceback import install
def main():
install(show_locals=True)
ui.run(
title='osu!dreamer',
native=True,
dark=True,
reload=False,
storage_secret='...',
window_size=(800, 670),
)