start work on go rewrite for stable release

This commit is contained in:
HikariKnight 2023-04-05 17:53:27 +02:00
parent 1fc61e5842
commit 62635076c3
9 changed files with 344 additions and 36 deletions

View file

@ -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()
}
}