mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-09 01:27:17 +00:00
8 lines
115 B
Python
8 lines
115 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class Scope(Enum):
|
||
|
ZMQ = 'zmq'
|
||
|
WEBSOCKET = 'websocket'
|
||
|
BROADCAST = 'broadcast'
|