added string file

i feel there be many more ToString functions in the future
This commit is contained in:
Wyatt J. Miller 2019-08-19 21:43:26 -04:00
parent 7f7fce65df
commit fdb3950670

7
string.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "time"
func timeToString(currentTime time.Time) string {
return currentTime.String()
}