From 1bad10c0d339c9ce11ffcb0cc664161abf07e3aa Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Fri, 18 Mar 2016 17:44:28 +0100 Subject: [PATCH] Adds Score structure to keep track of settings for perticular scores --- main.go | 3 +++ settings/score.go | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 settings/score.go diff --git a/main.go b/main.go index db4cb43..d8d97cc 100644 --- a/main.go +++ b/main.go @@ -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 diff --git a/settings/score.go b/settings/score.go new file mode 100644 index 0000000..cc53232 --- /dev/null +++ b/settings/score.go @@ -0,0 +1,22 @@ +// Copyright © 2016 Jip J. Dekker +// +// 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 +}