10 lines
176 B
Python
10 lines
176 B
Python
class DDRobot:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def send(self, *args, **kwargs):
|
|
if args:
|
|
print(args)
|
|
if kwargs:
|
|
print(kwargs)
|