1
0
Fork 0
neonmodem/neonmodem.go

15 lines
160 B
Go
Raw Permalink Normal View History

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