WithLocalManagementPassword stores a runtime-only management password accepted for localhost requests.
(password string)
| 32 | |
| 33 | // WithLocalManagementPassword stores a runtime-only management password accepted for localhost requests. |
| 34 | func WithLocalManagementPassword(password string) ServerOption { |
| 35 | return internalapi.WithLocalManagementPassword(password) |
| 36 | } |
| 37 | |
| 38 | // WithKeepAliveEndpoint enables a keep-alive endpoint with the provided timeout and callback. |
| 39 | func WithKeepAliveEndpoint(timeout time.Duration, onTimeout func()) ServerOption { |
nothing calls this directly
no test coverage detected