mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 23:02:53 +00:00
13 lines
166 B
Go
13 lines
166 B
Go
|
//go:build !DEBUG
|
||
|
|
||
|
package pebble
|
||
|
|
||
|
import _ "embed"
|
||
|
|
||
|
var (
|
||
|
//go:embed asset/pebble-cert.pem
|
||
|
RawCert []byte
|
||
|
//go:embed asset/pebble-config.json
|
||
|
RawConfig []byte
|
||
|
)
|