From 18fa60fbbcc2dbbe064c0dda004ccdd03ad7a7fe Mon Sep 17 00:00:00 2001 From: Isaac Teles-Rosario Date: Mon, 2 May 2022 14:55:58 -0400 Subject: [PATCH] forgot about the ownership push --- CTng/config/ReadMe.md | 3 +++ CTng/config/config_loaders.go | 5 +++++ CTng/config/config_test.go | 6 ++++++ CTng/config/types.go | 5 +++++ 4 files changed, 19 insertions(+) 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" )