From fdb39506705f2108cbcbdbd2bad8d10d1d94ba75 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Mon, 19 Aug 2019 21:43:26 -0400 Subject: [PATCH] added string file i feel there be many more ToString functions in the future --- string.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 string.go diff --git a/string.go b/string.go new file mode 100644 index 0000000..aa937e3 --- /dev/null +++ b/string.go @@ -0,0 +1,7 @@ +package main + +import "time" + +func timeToString(currentTime time.Time) string { + return currentTime.String() +}