mirror of
				https://github.com/LiteyukiStudio/LiteyukiBot.git
				synced 2025-11-04 11:06:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			177 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			177 B
		
	
	
	
		
			Python
		
	
	
	
	
	
class SatoriCounter:
 | 
						|
    msg_sent: int
 | 
						|
    msg_received: int
 | 
						|
 | 
						|
    def __init__(self):
 | 
						|
        self.msg_sent = 0
 | 
						|
        self.msg_received = 0
 | 
						|
 | 
						|
 | 
						|
satori_counter = SatoriCounter()
 |