to_ck/ck/robot.py
2021-04-21 18:02:03 +08:00

10 lines
176 B
Python

class DDRobot:
def __init__(self):
pass
def send(self, *args, **kwargs):
if args:
print(args)
if kwargs:
print(kwargs)