| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package config |
||
| 2 | |||
| 3 | // PRIVATE METHODS |
||
| 4 | |||
| 5 | var defaultSeparator string = "," |
||
| 6 | |||
| 7 | // PRIVATE METHODS |
||
| 8 | |||
| 9 | // PUBLIC METHODS |
||
| 10 | |||
| 11 | //GetDefaultSeparator variable for arrays toString() |
||
| 12 | func GetDefaultSeparator() string { |
||
| 13 | return defaultSeparator |
||
| 14 | } |
||
| 15 | |||
| 16 | // PUBLIC METHODS |
||
| 17 | |||
| 18 | // Primitive types |
||
| 19 | var Types struct { |
||
| 20 | Int64_slice []int64 |
||
| 21 | Int32_slice []int32 |
||
| 22 | Int16_slice []int16 |
||
| 23 | Int8_slice []int8 |
||
| 24 | Int_slice []int |
||
| 25 | Uint64_slice []uint64 |
||
| 26 | Uint32_slice []uint32 |
||
| 27 | Uint16_slice []uint16 |
||
| 28 | Uint8_slice []uint8 |
||
| 29 | Uint_slice []uint |
||
| 30 | String_slice []string |
||
| 31 | } |
||
| 32 |