package models import "github.com/danielgtaylor/huma/v2" type DownloadInput struct { BundleID string `query:"bundleID" doc:"ID приложения" minLength:"3" example:"com.zhiliaoapp.musically"` } type DownloadOutput struct { Body func(huma.Context) ContentDisposition string `header:"Content-Disposition"` ContentType string `header:"Content-Type"` }