caddy/modules/caddytls/export_test.go
2026-05-10 10:18:16 +00:00

8 lines
214 B
Go

package caddytls
// IsManaging returns true if the name is being managed by this TLS app.
// This is for testing purposes only.
func (t *TLS) IsManaging(name string) bool {
_, ok := t.managing[name]
return ok
}