mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
14 lines
287 B
Python
14 lines
287 B
Python
#
|
|
# Copyright 2017 Ettus Research, National Instruments Company
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0
|
|
#
|
|
"""
|
|
dboards module __init__.py
|
|
"""
|
|
from .base import DboardManagerBase
|
|
from .magnesium import Magnesium
|
|
from .eiscat import EISCAT
|
|
from .test import test
|
|
from .unknown import unknown
|
|
|