Files
FemaInstaller/cmd/deployer/main.go

16 lines
376 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import (
"fyne.io/fyne/v2/app"
"gitea.unprism.ru/KRBL/FemaDeployer/internal/ui"
)
func main() {
// Создаем Fyne приложение с уникальным ID
myApp := app.NewWithID("ru.unprism.gitea.KRBL.FemaDeployer")
// Создаем и показываем главное окно
mainWindow := ui.NewAppUI(myApp)
mainWindow.ShowAndRun()
}