// Code scaffolded by goctl. Safe to edit. // goctl 1.9.2 package ai import ( "context" "github.com/youruser/base/internal/svc" "github.com/youruser/base/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type AiQuotaMeLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } // 获取我的配额 func NewAiQuotaMeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AiQuotaMeLogic { return &AiQuotaMeLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *AiQuotaMeLogic) AiQuotaMe() (resp *types.AIQuotaInfo, err error) { // todo: add your logic here and delete this line return }