mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-11-03 04:27:16 -05:00
15 lines
160 B
Go
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)
|
|
}
|