mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-08-01 21:42:21 +00:00
9 lines
74 B
Python
9 lines
74 B
Python
from abc import ABC
|
|
|
|
|
|
class Chain(ABC):
|
|
|
|
def dag(self):
|
|
pass
|
|
|