mirror of
https://github.com/wneessen/logranger.git
synced 2024-11-22 12:50:50 +01:00
Winni Neessen
ea1ac393bc
All source code files as well as README.md, .gitignore, and various configuration files have been updated with an SPDX license identifier, changing license from CC0-1.0 to MIT. The copyright year has been updated to 2023, and the copyright holder's email address has been corrected from 'winni@neessen.dev' to 'wn@neessen.dev'. An MIT license text file has been additionally added.
10 lines
343 B
Go
10 lines
343 B
Go
// SPDX-FileCopyrightText: 2023 Winni Neessen <wn@neessen.dev>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package logranger
|
|
|
|
import "errors"
|
|
|
|
// ErrCertConfigEmpty is returned if a TLS listener is configured but not certificate or key paths are set
|
|
var ErrCertConfigEmpty = errors.New("certificate and key paths are required for listener type: TLS")
|