mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 23:02:53 +00:00
11 lines
215 B
Go
11 lines
215 B
Go
//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
|
|
}
|