update oss build file for store
This commit is contained in:
parent
8815afed32
commit
9e7cd66bbb
1 changed files with 5 additions and 5 deletions
|
@ -30,22 +30,22 @@ func New(db *db.DB) core.CardStore {
|
||||||
|
|
||||||
type noop struct{}
|
type noop struct{}
|
||||||
|
|
||||||
func (noop) FindCardByBuild(ctx context.Context, build int64) ([]*core.Card, error) {
|
func (noop) FindByBuild(ctx context.Context, build int64) ([]*core.Card, error) {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (noop) FindCard(ctx context.Context, step int64) (*core.Card, error) {
|
func (noop) Find(ctx context.Context, step int64) (*core.Card, error) {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (noop) FindCardData(ctx context.Context, id int64) (io.ReadCloser, error) {
|
func (noop) FindData(ctx context.Context, id int64) (io.ReadCloser, error) {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (noop) CreateCard(ctx context.Context, card *core.Card, data io.ReadCloser) error {
|
func (noop) Create(ctx context.Context, card *core.Card, data io.ReadCloser) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (noop) DeleteCard(ctx context.Context, id int64) error {
|
func (noop) Delete(ctx context.Context, id int64) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue