7 lines
138 B
Python
7 lines
138 B
Python
|
from core.module import Module
|
||
|
|
||
|
|
||
|
class MatrixClockModule(Module):
|
||
|
def __init__(self) -> None:
|
||
|
super().__init__("matrixclock")
|