18 lines
356 B
Python
18 lines
356 B
Python
from nicegui import ui
|
|
from bot_instance import bot
|
|
|
|
# reminder:
|
|
# tracked_games etc erst in andere variable kopieren und lock benutzen.
|
|
|
|
|
|
def create_ui():
|
|
ui.label("Amogus")
|
|
|
|
with bot.tracked_games_lock:
|
|
games = list(bot.tracked_games)
|
|
rows = []
|
|
for game in games:
|
|
rows.append({"Name": game.name})
|
|
|
|
ui.table(rows=rows)
|