codeword/internal/controller/rpc_controllers/promoCode.go

14 lines
249 B
Go
Raw Normal View History

2024-04-25 12:09:28 +00:00
package rpc_controllers
import "codeword/internal/services"
type RpcRegister struct {
Service *services.PromoCodeService
}
func InitRpcControllers(service *services.PromoCodeService) *RpcRegister {
return &RpcRegister{
Service: service,
}
}