wireguard-dashboard/cli/kernal.go

11 lines
105 B
Go
Raw Normal View History

2024-12-13 15:07:57 +08:00
package cli
import (
"wireguard-ui/cli/tui"
)
2024-12-13 15:07:57 +08:00
func Kernel() error {
tui.NewApp().Run()
2024-12-13 15:07:57 +08:00
return nil
}