mirror of
https://github.com/ChronosX88/medved.git
synced 2025-02-16 21:16:27 +00:00
8 lines
121 B
Python
8 lines
121 B
Python
|
from lib import Loadable
|
||
|
|
||
|
class Pipeline(Loadable):
|
||
|
def __init__(self, id, root):
|
||
|
super().__init__(id, root)
|
||
|
|
||
|
|