mirror of https://git.jolheiser.com/ugit.git
20 lines
291 B
Go
20 lines
291 B
Go
|
package assets
|
||
|
|
||
|
import "embed"
|
||
|
|
||
|
var (
|
||
|
//go:embed *.svg
|
||
|
Icons embed.FS
|
||
|
LinkIcon = must("link.svg")
|
||
|
EmailIcon = must("email.svg")
|
||
|
LogoIcon = must("ugit.svg")
|
||
|
)
|
||
|
|
||
|
func must(path string) []byte {
|
||
|
content, err := Icons.ReadFile(path)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
return content
|
||
|
}
|