1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-15 23:17:19 +00:00

Use JSON module instead of stdlib json (#18003)

This commit is contained in:
Gusted
2021-12-17 02:15:02 +01:00
committed by GitHub
parent 8354670708
commit dab28c7049
2 changed files with 2 additions and 2 deletions

View File

@@ -5,11 +5,11 @@
package updatechecker
import (
"encoding/json"
"io/ioutil"
"net/http"
"code.gitea.io/gitea/modules/appstate"
"code.gitea.io/gitea/modules/json"
"code.gitea.io/gitea/modules/proxy"
"code.gitea.io/gitea/modules/setting"