Archived
1
0

Adds function to read a score structure from a JSON file

This commit is contained in:
Jip J. Dekker 2016-03-18 17:45:09 +01:00
parent 1bad10c0d3
commit 95e8fbd5f5

View File

@ -14,9 +14,29 @@
package settings
import (
"encoding/json"
"io/ioutil"
)
// Score represents the settings for a specific score file
type Score struct {
Name string // The name of the score in the songbook
Categories []string // Categories to which the scores belong
Path string // The path to the scores (uncompiled) file
}
// FromJSON reads the settings of a score from a JSON file
func FromJSON(path string) (*Score, error) {
data, err := ioutil.ReadFile(path)
if err != nil {
return nil, err
}
var s Score
err = json.Unmarshal(data, &s)
if err != nil {
return nil, err
}
return &s, nil
}