Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 292 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 292 Bytes

Cached Time Strings for Go

Package timestr provides a cached version of the currenct time and some string representations with a 1-second precision.

Usage

package main

import (
  "fmt"
  "github.com/remerge/go-timestr"
)

func main() {
  fmt.Println(timestr.ISO8601())
}