18 lines
415 B
Go
18 lines
415 B
Go
package sravni
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.loyso.art/frx/kurious/internal/common/errors"
|
|
)
|
|
|
|
type NoopClient struct{}
|
|
|
|
func (NoopClient) GetMainPageState() (*PageState, error) {
|
|
return nil, errors.ErrNotImplemented
|
|
}
|
|
|
|
func (NoopClient) ListEducationalProducts(context.Context, ListEducationProductsParams) (ListEducationProductsResponse, error) {
|
|
return ListEducationProductsResponse{}, errors.ErrNotImplemented
|
|
}
|