mirror of
https://github.com/Crocmagnon/display-epaper.git
synced 2024-12-22 20:11:46 +01:00
12 lines
192 B
Go
12 lines
192 B
Go
package fonts
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed ttf/OpenSans-Bold.ttf
|
|
var Bold []byte
|
|
|
|
//go:embed ttf/OpenSans-Regular.ttf
|
|
var Regular []byte
|
|
|
|
//go:embed ttf/OpenSans-Italic.ttf
|
|
var Italic []byte
|