mirror of
https://github.com/nqrduck/nqrduck-measurement.git
synced 2024-12-22 23:57:51 +00:00
8 lines
307 B
Python
8 lines
307 B
Python
"""Module initialization file for the nqrduck-measurement module."""
|
|
|
|
from nqrduck.module.module import Module
|
|
from .model import MeasurementModel
|
|
from .view import MeasurementView
|
|
from .controller import MeasurementController
|
|
|
|
Measurement = Module(MeasurementModel, MeasurementView, MeasurementController)
|