generated from daniil-berg/boilerplate-py
9 lines
186 B
Python
9 lines
186 B
Python
PACKAGE_NAME = 'asyncio_taskpool'
|
|
MSG_BYTES = 1024
|
|
CMD_START = 'start'
|
|
CMD_STOP = 'stop'
|
|
CMD_STOP_ALL = 'stop_all'
|
|
CMD_NUM_RUNNING = 'num_running'
|
|
CMD_FUNC = 'func'
|
|
CLIENT_EXIT = 'exit'
|