smon/helper.go

12 lines
174 B
Go
Raw Normal View History

2024-06-27 13:14:37 +02:00
package main
import (
// Standard
"time"
)
func stringToTime(strTime string) (t time.Time, err error) {// {{{
t, err = time.Parse(time.RFC3339, strTime)
return
}// }}}