package service import ( "voucher/internal/biz" ) type VoucherService struct { VoucherBiz *biz.VoucherBiz } func NewVoucherService(VoucherBiz *biz.VoucherBiz) *VoucherService { return &VoucherService{VoucherBiz: VoucherBiz} }