12 lines
341 B
Python
12 lines
341 B
Python
|
def createOrbit(name=None):
|
||
|
from .Orbit import Orbit
|
||
|
return Orbit()
|
||
|
def getFactoriesInfo():
|
||
|
"""
|
||
|
Returns a dictionary with information on how to create an object Sensor from its factory
|
||
|
"""
|
||
|
return {'Orbit':
|
||
|
{
|
||
|
'factory':'createOrbit'
|
||
|
}
|
||
|
}
|