mirror of
https://github.com/nqrduck/nqrduck-spectrometer-simulator.git
synced 2024-12-21 07:00:25 +00:00
8 lines
307 B
Python
8 lines
307 B
Python
"""Creation of the Simulator Spectrometer."""
|
|
|
|
from nqrduck_spectrometer.base_spectrometer import BaseSpectrometer
|
|
from .model import SimulatorModel
|
|
from .view import SimulatorView
|
|
from .controller import SimulatorController
|
|
|
|
Simulator = BaseSpectrometer(SimulatorModel, SimulatorView, SimulatorController)
|