()
| 194 | } |
| 195 | |
| 196 | func GetTimeString() string { |
| 197 | now := time.Now() |
| 198 | return fmt.Sprintf("%s%d", now.Format("20060102150405"), now.UnixNano()%1e9) |
| 199 | } |
| 200 | |
| 201 | func Max(a int, b int) int { |
| 202 | if a >= b { |
no outgoing calls
no test coverage detected