Skip to content

Instantly share code, notes, and snippets.

@pfrozi
Created March 2, 2021 03:21
Show Gist options
  • Save pfrozi/438f03bbec9a9bb60c58bf5035aaf5a0 to your computer and use it in GitHub Desktop.
Save pfrozi/438f03bbec9a9bb60c58bf5035aaf5a0 to your computer and use it in GitHub Desktop.
Truncate time from now
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(time.Now())
fmt.Println(time.Now().Truncate(24*time.Hour))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment