Archived
1
0

Adds Score structure to keep track of settings for perticular scores

This commit is contained in:
Jip J. Dekker 2016-03-18 17:44:28 +01:00
parent dc1ded5433
commit 1bad10c0d3
2 changed files with 25 additions and 0 deletions

View File

@ -19,3 +19,6 @@ import "github.com/jjdekker/ponder/cmd"
func main() {
cmd.Execute()
}
// TODO: Make a command to check that settings are legal:
// TODO: - Check paths don't require WD knowledge

22
settings/score.go Normal file
View File

@ -0,0 +1,22 @@
// Copyright © 2016 Jip J. Dekker <jip@dekker.li>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package settings
// 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
}