mirror of
https://github.com/Crocmagnon/display-epaper.git
synced 2024-12-23 04:21:48 +01:00
13 lines
192 B
Go
13 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
|