orchid/pebble-dev/normal.go

11 lines
215 B
Go
Raw Normal View History

2023-06-26 11:56:21 +01:00
//go:build !DEBUG
package pebble_dev
import "log"
func GetPebbleCert() []byte {
log.Fatalln("[Renewal] Pebble is selected as the certificate source but this binary was not compiled in debug mode")
return nil
}