9 lines
187 B
Python
9 lines
187 B
Python
#!/usr/bin/env python3
|
|
"""Backward-compatible launcher for the refactored dataplotter."""
|
|
|
|
from rfg_adc_plotter.main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|