From 85309ded0612023863176b45b87d2061350667d9 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Wed, 1 Nov 2023 19:06:15 +0100 Subject: [PATCH] fixed a linting issue --- server/backend/cron/file_download.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/backend/cron/file_download.go b/server/backend/cron/file_download.go index ba8d9e3d..2a051666 100644 --- a/server/backend/cron/file_download.go +++ b/server/backend/cron/file_download.go @@ -2,13 +2,14 @@ package cron import ( "errors" - "github.com/guregu/null" "io" "net/http" "os" "path" "strings" + "github.com/guregu/null" + "github.com/TUM-Dev/Campus-Backend/server/model" "github.com/disintegration/imaging" "github.com/gabriel-vasile/mimetype"