15 lines
200 B
Go
15 lines
200 B
Go
|
package images
|
||
|
|
||
|
import _ "embed"
|
||
|
|
||
|
//go:embed arch.png
|
||
|
var ArchArt []byte
|
||
|
|
||
|
//go:embed ubuntu.jpg
|
||
|
var UbuntuArt []byte
|
||
|
|
||
|
var DistroImages = map[string][]byte{
|
||
|
"arch": ArchArt,
|
||
|
"ubuntu": UbuntuArt,
|
||
|
}
|