14 lines
354 B
Python
14 lines
354 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
def createUnwrapComp(name=''):
|
||
|
from .unwrapComponents import unwrapComponents
|
||
|
instance = unwrapComponents(name=name)
|
||
|
return instance
|
||
|
|
||
|
def getFactoriesInfo():
|
||
|
return {'UnwrapComp':
|
||
|
{
|
||
|
'factory':'createUnwrapComp'
|
||
|
}
|
||
|
}
|