mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-25 15:52:20 +00:00
8 lines
132 B
Python
8 lines
132 B
Python
from lib import Loadable
|
|
#TODO dunno
|
|
class Pipeline(Loadable):
|
|
def __init__(self, id, root):
|
|
super().__init__(id, root)
|
|
|
|
|