Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
Chicook authored Dec 23, 2024
1 parent 6d8ae81 commit e26b4d7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions public/BK_CPSGR/servidor.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from flask import Flask, render_template_string
from flask_socketio import SocketIO,
import reflex as rx
# import reflex as rx

app = Flask(__name__)
socketio = SocketIO(app)

"""
app = rx.App()

def layout():
return rx.div(
rx.header(
rx.h1("Metaverso Crypto 3D", class_name="header"),
Expand Down Expand Up @@ -70,8 +71,10 @@ def layout():
),
class_name="body"
)

"""
app.add_page(layout)
"""
"""

@socketio.on('audio_stream')
def handle_audio(data):
Expand Down

0 comments on commit e26b4d7

Please sign in to comment.