Files
OPENCNC-J/desktop/main.go
2023-08-28 22:37:55 +08:00

24 lines
499 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.
/**
******************************************************************************
* @file main.go
* @author GEEKROS site:www.geekros.com github:geekros.github.io
******************************************************************************
*/
package main
import (
"cnc/framework"
"embed"
"fmt"
"github.com/gookit/color"
)
//go:embed all:template/dist
var Template embed.FS
func main() {
fmt.Println("[cnc][main]" + color.Gray.Text("starting..."))
Framework.Init(Template)
}