(sec int64, nsec int64, timeFmt string)
| 110 | } |
| 111 | |
| 112 | func GetDatetimeStr(sec int64, nsec int64, timeFmt string) string { |
| 113 | return time.Unix(sec, nsec).Format(timeFmt) |
| 114 | } |
| 115 | |
| 116 | func CommaSeparatedListToArray(str string) []string { |
| 117 | var arr []string |
no outgoing calls
no test coverage detected