An open API service indexing awesome lists of open source software.

https://github.com/jeppech/zeit

A package for working with time
https://github.com/jeppech/zeit

Last synced: 4 days ago
JSON representation

A package for working with time

Awesome Lists containing this project

README

          

# zeit
A simple package for working with time, not timestamps

```golang
package main

import (
"fmt"
"github.com/jeppech/zeit"
)

func main() {
now := time.Now().UTC()
fmt.Println(now) // 2022-05-06 07:19:35.072174 +0000 UTC

z_now := zeit.Now() // 07:19:35
fmt.Println(z_now)

}
```