adminAPI is a module that serves PKI endpoints to retrieve information about the CAs being managed by Caddy.
| 32 | // adminAPI is a module that serves PKI endpoints to retrieve |
| 33 | // information about the CAs being managed by Caddy. |
| 34 | type adminAPI struct { |
| 35 | ctx caddy.Context |
| 36 | log *zap.Logger |
| 37 | pkiApp *PKI |
| 38 | } |
| 39 | |
| 40 | // CaddyModule returns the Caddy module information. |
| 41 | func (adminAPI) CaddyModule() caddy.ModuleInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected