forked from ebhomengo/niki
1
0
Fork 0
niki/delivery/http_server/benefactor/kind_box_req/handler.go

21 lines
553 B
Go
Raw Normal View History

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,
}
}