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