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