Control socket: rename method 'exit' -> 'quit'

このコミットが含まれているのは:
n9k 2022-07-31 23:09:52 +00:00
コミット b9c2d89a5a
3個のファイルの変更10行の追加10行の削除

ファイルの表示

@ -5,14 +5,14 @@ from anonstream.control.spec import ParseException, Parsed
from anonstream.control.spec.common import Str
from anonstream.control.spec.methods.allowedness import SPEC as SPEC_ALLOWEDNESS
from anonstream.control.spec.methods.chat import SPEC as SPEC_CHAT
from anonstream.control.spec.methods.exit import SPEC as SPEC_EXIT
from anonstream.control.spec.methods.help import SPEC as SPEC_HELP
from anonstream.control.spec.methods.quit import SPEC as SPEC_QUIT
from anonstream.control.spec.methods.title import SPEC as SPEC_TITLE
from anonstream.control.spec.methods.user import SPEC as SPEC_USER
SPEC = Str({
'help': SPEC_HELP,
'exit': SPEC_EXIT,
'quit': SPEC_QUIT,
'title': SPEC_TITLE,
'chat': SPEC_CHAT,
'user': SPEC_USER,

ファイルの表示

@ -9,7 +9,7 @@ async def cmd_help():
'Usage: METHOD [COMMAND | help]\n'
'Examples:\n'
' help...........................show this help message\n'
' exit...........................close the control connection\n'
' quit...........................close the control connection\n'
' title [show]...................show the stream title\n'
' title set TITLE................set the stream title\n'
' user [show]....................show a list of users\n'

ファイルの表示

@ -4,19 +4,19 @@
from anonstream.control.spec.common import Str, End
from anonstream.control.exceptions import ControlSocketExit
async def cmd_exit():
async def cmd_quit():
raise ControlSocketExit
async def cmd_exit_help():
normal = ['exit', 'help']
async def cmd_quit_help():
normal = ['quit', 'help']
response = (
'Usage: exit\n'
'Usage: quit\n'
'Commands:\n'
' exit......close the connection\n'
' quit......close the connection\n'
)
return normal, response
SPEC = Str({
None: End(cmd_exit),
'help': End(cmd_exit_help),
None: End(cmd_quit),
'help': End(cmd_quit_help),
})