]> Cypherpunks.ru repositories - gocheese.git/blobdiff - json.go
More convenient trusted-host
[gocheese.git] / json.go
diff --git a/json.go b/json.go
index 4cb295e840c5a7b153cb83890bc7be1ce4e13607..7f1f3d77624764e3cb307f4f88d2dd215f6b8c1b 100644 (file)
--- a/json.go
+++ b/json.go
@@ -1,26 +1,23 @@
-/*
-GoCheese -- Python private package repository and caching proxy
-Copyright (C) 2019-2022 Sergey Matveev <stargrave@stargrave.org>
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, version 3 of the License.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.
-*/
+// GoCheese -- Python private package repository and caching proxy
+// Copyright (C) 2019-2024 Sergey Matveev <stargrave@stargrave.org>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, version 3 of the License.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 package main
 
 import (
        "bytes"
        "encoding/json"
-       "io/ioutil"
        "log"
        "net/http"
        "os"
@@ -35,7 +32,7 @@ func getMD(pkgName, version string) (*PkgMeta, []*PkgReleaseInfo, error) {
        if err != nil {
                return nil, nil, err
        }
-       md, err := ioutil.ReadFile(filepath.Join(Root, pkgName, MDFile))
+       md, err := os.ReadFile(filepath.Join(Root, pkgName, MDFile))
        if err != nil {
                if !os.IsNotExist(err) {
                        return nil, nil, err