1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-09 06:20:43 +00:00
neonmodem/neonmodem.go
2023-01-06 23:48:02 -05:00

15 lines
160 B
Go

package main
import (
"embed"
"github.com/mrusme/neonmodem/cmd"
)
//go:embed splashscreen.png
var EMBEDFS embed.FS
func main() {
cmd.Execute(&EMBEDFS)
}