mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
11 lines
276 B
Python
11 lines
276 B
Python
from twisted.protocols import amp
|
|
|
|
class Shutdown(amp.Command):
|
|
responseType = amp.QuitBox
|
|
|
|
class Ping(amp.Command):
|
|
response = [('response', amp.String())]
|
|
|
|
class Echo(amp.Command):
|
|
arguments = [('data', amp.String())]
|
|
response = [('response', amp.String())]
|