mirror of
https://github.com/caddyserver/caddy.git
synced 2026-05-13 09:06:41 +00:00
8 lines
214 B
Go
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
|
|
}
|