mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
6 lines
201 B
Python
6 lines
201 B
Python
|
from titanembeds.utils import socketio
|
||
|
from flask_socketio import Namespace, emit
|
||
|
|
||
|
class Gateway(Namespace):
|
||
|
def on_connect(self):
|
||
|
emit('key', {'data': 'Connected', 'best_pone': "rainbow"})
|