1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-09-01 04:14:15 -04:00
neonmodem/neonmodem.go

15 lines
160 B
Go
Raw Normal View History

2022-12-28 22:22:36 -05:00
package main
2023-01-06 19:41:28 -05:00
import (
"embed"
2023-01-06 19:46:41 -05:00
"github.com/mrusme/neonmodem/cmd"
2023-01-06 19:41:28 -05:00
)
//go:embed splashscreen.png
var EMBEDFS embed.FS
2022-12-28 22:22:36 -05:00
func main() {
2023-01-06 19:41:28 -05:00
cmd.Execute(&EMBEDFS)
2022-12-29 14:34:51 -05:00
}