start work on go rewrite for stable release
This commit is contained in:
parent
1fc61e5842
commit
62635076c3
9 changed files with 344 additions and 36 deletions
13
cmd/main.go
13
cmd/main.go
|
@ -1,7 +1,16 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"github.com/HikariKnight/quickpassthrough/internal/tuimode"
|
||||
"github.com/HikariKnight/quickpassthrough/pkg/params"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println("test")
|
||||
// Get all our arguments in 1 neat struct
|
||||
pArg := params.NewParams()
|
||||
|
||||
if !pArg.Flag["gui"] {
|
||||
//downloader.GetLsIOMMU()
|
||||
tuimode.App()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue