Documentation ¶ Index ¶ func New(driver string, dsn string, prefix string) configx.Entrypoint func NewDAO(o dao.DAO) dao.DAO type DAO type SQL func (s *SQL) Del() error func (s *SQL) Get() configx.Value func (s *SQL) Set(data interface{}) error func (s *SQL) Val(path ...string) configx.Values func (s *SQL) Watch(path ...string) (configx.Receiver, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func New ¶ func New(driver string, dsn string, prefix string) configx.Entrypoint func NewDAO ¶ func NewDAO(o dao.DAO) dao.DAO Types ¶ type DAO ¶ type DAO interface { dao.DAO Get() ([]byte, error) Set([]byte) error } type SQL ¶ type SQL struct { // contains filtered or unexported fields } func (*SQL) Del ¶ func (s *SQL) Del() error func (*SQL) Get ¶ func (s *SQL) Get() configx.Value func (*SQL) Set ¶ func (s *SQL) Set(data interface{}) error func (*SQL) Val ¶ func (s *SQL) Val(path ...string) configx.Values func (*SQL) Watch ¶ func (s *SQL) Watch(path ...string) (configx.Receiver, error) Source Files ¶ View all Source files dao.go sql.go Click to show internal directories. Click to hide internal directories.