11 lines
252 B
Python
11 lines
252 B
Python
|
|
async def send_page(websocket, templates, data_frontend):
|
|
await websocket.send_json(
|
|
{
|
|
'selector': '#main',
|
|
'html': templates.get_template(
|
|
f'pages/home.html'
|
|
).render(),
|
|
}
|
|
)
|