mirror of
https://github.com/kk7ds/chirp
synced 2026-08-13 17:51:36 -04:00
8 lines
123 B
Python
Executable file
8 lines
123 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
from chirp.wxui import chirpmain
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(chirpmain())
|