package service import ( "voucher/internal/biz" "voucher/internal/biz/cmb" "voucher/internal/conf" ) type VoucherService struct { bc *conf.Bootstrap VoucherBiz *biz.VoucherBiz Cmb *cmb.Cmb } func NewVoucherService( bc *conf.Bootstrap, VoucherBiz *biz.VoucherBiz, Cmb *cmb.Cmb, ) *VoucherService { return &VoucherService{ bc: bc, VoucherBiz: VoucherBiz, Cmb: Cmb, } }