mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-13 17:50:29 +08:00
11 lines
233 B
Python
11 lines
233 B
Python
from kvmd.apps.kvmd import main as kvmd_main
|
|
def start():
|
|
custom_argv = [
|
|
'kvmd',
|
|
'-c', 'kvmd_data/etc/kvmd/main.yaml',
|
|
'--run'
|
|
]
|
|
kvmd_main(argv=custom_argv)
|
|
|
|
if __name__ == '__main__':
|
|
start() |