fdb3950670
i feel there be many more ToString functions in the future
8 lines
110 B
Go
8 lines
110 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
func timeToString(currentTime time.Time) string {
|
|
return currentTime.String()
|
|
}
|