8 lines
202 B
Python
8 lines
202 B
Python
from gui.common import *
|
|
|
|
from data import data_api
|
|
|
|
def setup_routes():
|
|
@ui.page('/profile/{player_id}', dark=True)
|
|
def gamesystem_statistic_page(request: Request, player_id: int):
|
|
pass |