admin/sync: handle exercice gain from toml file: defines.txt
This commit is contained in:
parent
e7d3e34c0b
commit
332aa90931
2 changed files with 30 additions and 2 deletions
20
admin/sync/exercice_defines.go
Normal file
20
admin/sync/exercice_defines.go
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
package sync
|
||||
|
||||
import (
|
||||
"path"
|
||||
|
||||
"github.com/BurntSushi/toml"
|
||||
)
|
||||
|
||||
type ExerciceParams struct {
|
||||
Gain int64
|
||||
}
|
||||
|
||||
func parseExerciceParams(i Importer, exPath string) (p ExerciceParams, err error) {
|
||||
var defs string
|
||||
defs, err = getFileContent(i, path.Join(exPath, "defines.txt"))
|
||||
|
||||
_, err = toml.Decode(defs, &p)
|
||||
|
||||
return
|
||||
}
|
||||
Reference in a new issue