Initial commit

This commit is contained in:
2025-04-25 03:07:02 +03:00
commit 88a1f0f50f
16 changed files with 11945 additions and 0 deletions

File diff suppressed because it is too large Load Diff

24
cmd/installer/main.go Normal file
View File

@ -0,0 +1,24 @@
package main
import (
_ "embed"
"fyne.io/fyne/v2/app"
"gitea.unprism.ru/KRBL/FemaInstaller/internal/installer"
"gitea.unprism.ru/KRBL/FemaInstaller/internal/ui"
)
//go:embed defaultSettings.json
var defaultSettings string
func main() {
// Create application
myApp := app.New()
// Create installer
femaInstaller := installer.NewInstaller(defaultSettings)
// Create and show main window
mainWindow := ui.NewMainWindow(myApp, femaInstaller.Install)
mainWindow.ShowAndRun()
}