mirror of
https://github.com/luckfox-eng29/kvm.git
synced 2026-05-27 00:25:09 +02:00
16 lines
152 B
Go
16 lines
152 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"kvm"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) > 1 && os.Args[1] == "cli" {
|
|
kvm.RunCLI(os.Args[2:])
|
|
return
|
|
}
|
|
kvm.Main()
|
|
}
|