forked from Yandex-Practicum/final-project-encoding-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
29 lines (23 loc) · 802 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package main
import (
"fmt"
"github.com/Yandex-Practicum/final-project-encoding-go/encoding"
"github.com/Yandex-Practicum/final-project-encoding-go/utils"
)
func Encode(data encoding.MyEncoder) error {
return data.Encoding()
}
func main() {
utils.CreateJSONFile()
utils.CreateYAMLFile()
jsonData := encoding.JSONData{FileInput: "jsonInput.json", FileOutput: "yamlOutput.yml"}
err := Encode(&jsonData)
if err != nil {
fmt.Printf("ошибка при перекодировании данных из JSON в YAML: %s", err.Error())
}
yamlData := encoding.YAMLData{FileInput: "yamlInput.yml", FileOutput: "jsonOutput.json"}
err = Encode(&yamlData)
if err != nil {
fmt.Printf("ошибка при перекодировании данных из YAML в JSON: %s", err.Error())
}
}