orchid/pebble/pebble.go

13 lines
154 B
Go
Raw Normal View History

2023-06-29 02:37:00 +01:00
//go:build !DEBUG
package pebble
import _ "embed"
var (
2023-07-10 17:51:14 +01:00
//go:embed pebble-cert.pem
2023-06-29 02:37:00 +01:00
RawCert []byte
2023-07-10 17:51:14 +01:00
//go:embed pebble-config.json
2023-06-29 02:37:00 +01:00
RawConfig []byte
)