app/src/plugins/liteyuki_status/counter_for_satori.py
2024-06-26 13:52:04 +08:00

11 lines
187 B
Python

class SatoriCounter:
msg_sent: int
msg_received: int
def __init__(self):
self.msg_sent = 0
self.msg_received = 0
satori_counter = SatoriCounter()