iso8601:用于Go的快速ISO8601日期解析器 源码
用于Go的快速ISO8601日期解析器 go get github.com/relvacode/iso8601 Go中内置的RFC3333时间布局过于严格,无法支持任何ISO8601日期时间。 该库将任何ISO8601日期解析为不带正则表达式的本机Go时间对象。 用法 import "github.com/relvacode/iso8601" // iso8601.Time can be used as a drop-in replacement for time.Time with JSON responses type ExternalAPIResponse struct { Tim
用户评论