mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-smlc.git
synced 2025-10-23 08:22:18 +00:00
14 lines
303 B
Python
14 lines
303 B
Python
#!/usr/bin/env python3
|
|
|
|
app_configs = {
|
|
"osmo-smlc": ["doc/examples/osmo-smlc/osmo-smlc.cfg"]
|
|
}
|
|
|
|
apps = [(4271, "src/osmo-smlc/osmo-smlc", "OsmoSMLC", "osmo-smlc")
|
|
]
|
|
|
|
vty_command = ["./src/osmo-smlc/osmo-smlc", "-c",
|
|
"doc/examples/osmo-smlc/osmo-smlc.cfg"]
|
|
|
|
vty_app = apps[0]
|