18 lines
248 B
Go
18 lines
248 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"suruatoel.xyz/mcg/internal/gui"
|
|
"suruatoel.xyz/mcg/internal/i18n"
|
|
)
|
|
|
|
func main() {
|
|
i18n.Init("mcg", "locale")
|
|
|
|
app := gui.NewApplication()
|
|
exitCode := app.Run(os.Args)
|
|
if exitCode > 0 {
|
|
os.Exit(exitCode)
|
|
}
|
|
}
|