logman/string.go
Wyatt J. Miller fdb3950670 added string file
i feel there be many more ToString functions in the future
2019-08-19 21:43:26 -04:00

8 lines
110 B
Go

package main
import "time"
func timeToString(currentTime time.Time) string {
return currentTime.String()
}