Linting.
All checks were successful
Linting and tests / Linting (push) Successful in 21s

This commit is contained in:
2025-09-15 09:34:23 +05:00
parent 2c13e3f380
commit b787a2b22a
3 changed files with 5 additions and 1 deletions

View File

@@ -11,4 +11,6 @@ const ServiceNameHTTPServer = "core/http_server"
var ErrHTTPServerIsInvalid = errors.New("HTTP server service implementation is invalid")
// HTTPServer is an interface for HTTP server service.
//
//nolint:iface
type HTTPServer interface{}

View File

@@ -11,4 +11,6 @@ const ServiceNameOptions = "core/options"
var ErrOptionsIsInvalid = errors.New("options service implementation is invalid")
// Options is an interface for options service.
//
//nolint:iface
type Options interface{}