mirror of
https://github.com/nqrduck/nqrduck-spectrometer-simulator.git
synced 2025-01-02 20:58:07 +00:00
6 lines
259 B
Python
6 lines
259 B
Python
|
from nqrduck_spectrometer.base_spectrometer import BaseSpectrometer
|
||
|
from .model import SimulatorModel
|
||
|
from .view import SimulatorView
|
||
|
from .controller import SimulatorController
|
||
|
|
||
|
Simulator = BaseSpectrometer(SimulatorModel, SimulatorView, SimulatorController)
|