mirror of
https://github.com/nqrduck/nqrduck-spectrometer-limenqr.git
synced 2024-11-13 21:11:55 +00:00
6 lines
297 B
Python
6 lines
297 B
Python
|
from nqrduck.module.module import Module
|
||
|
from nqrduck_spectrometer_limenqr.model import LimeNQRModel
|
||
|
from nqrduck_spectrometer_limenqr.view import LimeNQRView
|
||
|
from nqrduck_spectrometer_limenqr.controller import LimeNQRController
|
||
|
|
||
|
Spectrometer = Module(LimeNQRModel, LimeNQRView, LimeNQRController)
|