All checks were successful
Linting and tests / Linting (push) Successful in 21s
17 lines
416 B
Go
17 lines
416 B
Go
package core
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ServiceNameOptions is a name for options service which controls options storage.
|
|
const ServiceNameOptions = "core/options"
|
|
|
|
// ErrOptionsIsInvalid appears when options service implementation is invalid.
|
|
var ErrOptionsIsInvalid = errors.New("options service implementation is invalid")
|
|
|
|
// Options is an interface for options service.
|
|
//
|
|
//nolint:iface
|
|
type Options interface{}
|