diff --git a/CTng/config/ReadMe.md b/CTng/config/ReadMe.md index d2891b3..21a878f 100644 --- a/CTng/config/ReadMe.md +++ b/CTng/config/ReadMe.md @@ -11,3 +11,6 @@ ## config_test.go This tests that the information is populated correctly. Given the json files inside the folder /test, it will read and populate the respective structs + + +##### Readme Written by Isaac \ No newline at end of file diff --git a/CTng/config/config_loaders.go b/CTng/config/config_loaders.go index 05f2814..9ce1984 100644 --- a/CTng/config/config_loaders.go +++ b/CTng/config/config_loaders.go @@ -1,5 +1,10 @@ package config +/* +Code Ownership: +Isaac - Responsible for functions +Finn - Helped with review+code refactoring +*/ import ( crypto "CTng/crypto" "encoding/json" diff --git a/CTng/config/config_test.go b/CTng/config/config_test.go index 6145ad4..10db51f 100644 --- a/CTng/config/config_test.go +++ b/CTng/config/config_test.go @@ -1,5 +1,11 @@ package config +/* +Code Ownership: +Isaac - Responsible for tests +Finn - Helped with review+code refactoring, also added last test func +*/ + import ( crypto "CTng/crypto" "fmt" diff --git a/CTng/config/types.go b/CTng/config/types.go index 41d551c..e65f9c8 100644 --- a/CTng/config/types.go +++ b/CTng/config/types.go @@ -1,5 +1,10 @@ package config +/* +Code Ownership: +Isaac - Responsible for all structs +Finn - Helped with review+code refactoring +*/ import ( "CTng/crypto" )