Обновление

This commit is contained in:
Anatoly Prohacky 2023-01-19 19:20:20 +10:00
parent 2b47ff8e24
commit 96b392adb5
3 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package main
import (
"encoding/json"
"io/ioutil"
"os"
"gitstore.ru/tolikproh/mchstest/internal/model"
@ -14,7 +13,7 @@ func main() {
var outTest []model.MTParseT
filename := util.InputTerminal("Введите имя файла базы данных сохранненой с сайта для парсинга (json)")
bs, err := ioutil.ReadFile(filename + ".json")
bs, err := os.ReadFile(filename + ".json")
util.Check(err, "")
err = json.Unmarshal(bs, &inTest)

BIN
mtparse

Binary file not shown.

Binary file not shown.