Update to GCT script library (#496)

* * Adds script link to GCT logger package
* Adds ability to save data as csv via script

* addr nits

* go mod tidy

* add glorious suggestion

* rm unused function

* fix linter issues

* clean up some issues

* Add in configuration fields to object for reflection to the csv file

* RM line :D

* address nits

* update to check for target already being set and add more test coverage

* force usage of .csv file extention && append date to client filename as to not overwrite file if collision occurs

* fix whoopsie

* linter issues

* purge getter methods

* Added glorious suggestion

* go mod tidy after merge

* niterinos
This commit is contained in:
Ryan O'Hara-Reid
2020-05-14 11:05:46 +10:00
committed by GitHub
parent bfab151e92
commit 0adf39de35
29 changed files with 944 additions and 75 deletions

View File

@@ -37,3 +37,8 @@ func GetModuleMap() *tengo.ModuleMap {
}
return modules
}
// SetDefaultScriptOutput sets the output folder
func SetDefaultScriptOutput(path string) {
gct.OutputDir = path
}