forked from ebhomengo/niki
21 lines
553 B
Go
21 lines
553 B
Go
package benefactorkindboxreqhandler
|
|
|
|
import (
|
|
authservice "git.gocasts.ir/ebhomengo/niki/service/auth"
|
|
benefactorkindboxreqservice "git.gocasts.ir/ebhomengo/niki/service/benefactor/kind_box_req"
|
|
)
|
|
|
|
type Handler struct {
|
|
authSvc authservice.Service
|
|
benefactorKindBoxReqSvc benefactorkindboxreqservice.Service
|
|
}
|
|
|
|
func New(authSvc authservice.Service,
|
|
benefactorKindBoxReqSvc benefactorkindboxreqservice.Service,
|
|
) Handler {
|
|
return Handler{
|
|
authSvc: authSvc,
|
|
benefactorKindBoxReqSvc: benefactorKindBoxReqSvc,
|
|
}
|
|
}
|