forked from ebhomengo/niki
20 lines
554 B
Go
20 lines
554 B
Go
package adminkindboxservice
|
|
|
|
import (
|
|
"context"
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
)
|
|
|
|
func (s Service) Get(ctx context.Context, req param.KindBoxGetRequest) (param.KindBoxGetResponse, error) {
|
|
const op = "adminkindboxservice.Get"
|
|
|
|
kindBox, err := s.repo.GetKindBox(ctx, req.KindBoxID)
|
|
if err != nil {
|
|
return param.KindBoxGetResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
|
}
|
|
|
|
return param.KindBoxGetResponse{KindBox: kindBox}, nil
|
|
}
|