caret

[ACTIVE] a command line tool for browsing Lobsters in your terminal
git clone git://git.figbert.com/caret.git
Log | Files | Refs | README | LICENSE

api.go (153B)


      1 package utils
      2 
      3 import "time"
      4 
      5 func TimeFromAPI(str string) time.Time {
      6 	created, _ := time.Parse("2006-01-02T15:04:05.999-07:00", str)
      7 	return created
      8 }