Run go fmt
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Elara 2023-01-28 21:08:35 -08:00
parent 657b562f31
commit 438304f8ce
2 changed files with 7 additions and 6 deletions

View File

@ -77,8 +77,10 @@ func allowAllCORSHandler(h http.Handler) http.Handler {
}) })
} }
type acceptLanguageKey struct{} type (
type langParameterKey struct{} acceptLanguageKey struct{}
langParameterKey struct{}
)
func withAcceptLanguage(h http.Handler) http.Handler { func withAcceptLanguage(h http.Handler) http.Handler {
return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) { return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {

View File

@ -1,13 +1,12 @@
package dlcache package dlcache
import ( import (
"crypto/sha1"
"encoding/hex" "encoding/hex"
"io" "io"
"os" "os"
"path/filepath" "path/filepath"
"crypto/sha1"
"go.arsenm.dev/lure/internal/config" "go.arsenm.dev/lure/internal/config"
) )