9 lines
74 B
Python
Raw Normal View History

2023-12-06 17:26:39 +08:00
from abc import ABC
class Chain(ABC):
def dag(self):
pass