Stanislav N. aka pztrn b787a2b22a
All checks were successful
Linting and tests / Linting (push) Successful in 21s
Linting.
2025-09-15 09:34:23 +05:00

17 lines
423 B
Go

package core
import (
"errors"
)
// ServiceNameHTTPServer is a name for HTTP server service.
const ServiceNameHTTPServer = "core/http_server"
// ErrHTTPServerIsInvalid appears when HTTP server service implementation is invalid.
var ErrHTTPServerIsInvalid = errors.New("HTTP server service implementation is invalid")
// HTTPServer is an interface for HTTP server service.
//
//nolint:iface
type HTTPServer interface{}