package system import ( "net/http" "git.i2edu.net/i2/go-zero/rest/httpx" "git.i2edu.net/i2/i2-bill-api/internal/logic/system" "git.i2edu.net/i2/i2-bill-api/internal/svc" ) func SystemFileDownloadHandler(ctx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { l := system.NewSystemFileDownloadLogic(r.Context(), ctx) resp, err := l.SystemFileDownload(w, r) if err != nil { httpx.Error(w, err) } else if resp != nil { httpx.OkJson(w, resp) } } }