Refactoring CDRE and CDRC configurations and functionality

This commit is contained in:
DanB
2014-10-02 19:02:23 +02:00
parent f609acd335
commit e4c9cf561a
27 changed files with 832 additions and 1549 deletions

View File

@@ -315,3 +315,12 @@ func Unzip(src, dest string) error {
return nil
}
// Utilities to provide pointers where we need to define ad-hoc
func StringPointer(str string) *string {
return &str
}
func IntPointer(i int) *int {
return &i
}