diff options
author | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-05 02:41:21 -0500 |
---|---|---|
committer | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-05 02:41:21 -0500 |
commit | a6f45bfa932b9e8e2393b5643e2bc38e44ba76df (patch) | |
tree | b823cbca417ea4753f6dfe87ba986d2023ecb39a /rubric_config.go | |
parent | 4a6efc74aebcc689a734d05bc8435eb9560340e1 (diff) | |
download | planr-a6f45bfa932b9e8e2393b5643e2bc38e44ba76df.tar.xz planr-a6f45bfa932b9e8e2393b5643e2bc38e44ba76df.zip |
Add config w/ version information
Diffstat (limited to 'rubric_config.go')
-rw-r--r-- | rubric_config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rubric_config.go b/rubric_config.go index 887bbb0..322e58a 100644 --- a/rubric_config.go +++ b/rubric_config.go @@ -135,7 +135,7 @@ func (defaults *Defaults) decodeAdapters( } // Decode defaults.toml -func DecodeDefaults(path string, adapterCfg []AdapterConfig) (Defaults, error) { +func DecodeRubricDefaults(path string, adapterCfg []AdapterConfig) (Defaults, error) { defaults := Defaults { } if _, err := toml.DecodeFile(path, &defaults); err != nil { @@ -151,7 +151,7 @@ func DecodeDefaults(path string, adapterCfg []AdapterConfig) (Defaults, error) { } // Decode an individual unit -func DecodeConfig(path string, adapterCfg []AdapterConfig) (TestCaseConfig, error) { +func DecodeRubricConfig(path string, adapterCfg []AdapterConfig) (TestCaseConfig, error) { config := TestCaseConfig { } if _, err := toml.DecodeFile(path, &config); err != nil { |