muMLE/services/__init__.py
2021-08-27 09:46:44 +02:00

9 lines
228 B
Python

from services.scd import SCD
from services.point.cartesian import PointCartesian
from services.point.polar import PointPolar
implemented = {
"SCD": SCD,
"PointCartesian": PointCartesian,
"PointPolar": PointPolar,
}