forked from awendt/pyrelacs
27 lines
408 B
Python
27 lines
408 B
Python
import uldaq
|
|
from IPython import embed
|
|
|
|
from pyrelacs.util.logging import config_logging
|
|
|
|
log = config_logging()
|
|
|
|
|
|
class Repos:
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def run_repo(self) -> None:
|
|
pass
|
|
|
|
def stop_repo(self) -> None:
|
|
pass
|
|
|
|
def reload_repo(self) -> None:
|
|
pass
|
|
|
|
def read_daq(self) -> None:
|
|
pass
|
|
|
|
def write_daq(self) -> None:
|
|
pass
|