1
0
mirror of https://github.com/rancher/norman.git synced 2025-07-30 14:30:59 +00:00
norman/store/empty/empty_store.go

33 lines
969 B
Go
Raw Normal View History

2017-11-11 04:44:02 +00:00
package empty
2017-11-28 21:28:25 +00:00
import (
"github.com/rancher/norman/types"
)
2017-11-11 04:44:02 +00:00
type Store struct {
}
func (e *Store) Delete(apiContext *types.APIContext, schema *types.Schema, id string) error {
return nil
}
func (e *Store) ByID(apiContext *types.APIContext, schema *types.Schema, id string) (map[string]interface{}, error) {
return nil, nil
}
func (e *Store) List(apiContext *types.APIContext, schema *types.Schema, opt *types.QueryOptions) ([]map[string]interface{}, error) {
return nil, nil
}
func (e *Store) Create(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}) (map[string]interface{}, error) {
return nil, nil
}
func (e *Store) Update(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}, id string) (map[string]interface{}, error) {
return nil, nil
}
2017-11-28 21:28:25 +00:00
func (e *Store) Watch(apiContext *types.APIContext, schema *types.Schema, opt types.QueryOptions) (chan map[string]interface{}, error) {
return nil, nil
}