logman/string.go

8 lines
110 B
Go
Raw Normal View History

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