mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-22 14:42:19 +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)
|
|
|
|
|