网站设置增加HLS加密功能(商业版本

This commit is contained in:
刘祥超
2024-01-14 20:36:47 +08:00
parent 534cfb2180
commit 66a31f599d
5 changed files with 39 additions and 1 deletions

View File

@@ -33,6 +33,11 @@ func (this *PlanService) FindEnabledPlan(ctx context.Context, req *pb.FindEnable
return &pb.FindEnabledPlanResponse{Plan: nil}, nil
}
// FindBasicPlan 查找套餐基本信息
func (this *PlanService) FindBasicPlan(ctx context.Context, req *pb.FindBasicPlanRequest) (*pb.FindBasicPlanResponse, error) {
return nil, this.NotImplementedYet()
}
// CountAllEnabledPlans 计算套餐数量
func (this *PlanService) CountAllEnabledPlans(ctx context.Context, req *pb.CountAllEnabledPlansRequest) (*pb.RPCCountResponse, error) {
return this.SuccessCount(0)