()
| 33 | } |
| 34 | |
| 35 | func timeString() string { |
| 36 | time := time.Now() |
| 37 | |
| 38 | return fmt.Sprintf("%02d:%02d:%02d", time.Hour(), time.Minute(), time.Second()) |
| 39 | } |
| 40 | |
| 41 | func Time() string { |
| 42 | return timeColor(timeString()) |
no outgoing calls
no test coverage detected