15 lines
398 B
Go
15 lines
398 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.
|
||
|
type Options interface{}
|