v0.4.1 authentication impelemented, not tested and docs not updated

This commit is contained in:
2025-09-23 12:03:42 -04:00
parent 4248d399b3
commit 45b2093569
21 changed files with 1779 additions and 453 deletions

View File

@ -20,8 +20,8 @@ type Manager struct {
logger *log.Logger
}
// New creates a TLS configuration from SSL config
func New(cfg *config.SSLConfig, logger *log.Logger) (*Manager, error) {
// NewManager creates a TLS configuration from SSL config
func NewManager(cfg *config.SSLConfig, logger *log.Logger) (*Manager, error) {
if cfg == nil || !cfg.Enabled {
return nil, nil
}