8 lines
187 B
Python
8 lines
187 B
Python
|
|
from nicegui import ui, app
|
||
|
|
from data import database, data_api
|
||
|
|
from gui import gui_style
|
||
|
|
|
||
|
|
def setup_routes():
|
||
|
|
@ui.page('/admin')
|
||
|
|
def home_page():
|
||
|
|
gui_style.apply_design()
|