Skip to content

Instantly share code, notes, and snippets.

View qgervacio's full-sized avatar

Quirino Gervacio qgervacio

View GitHub Profile
@msadakov
msadakov / round.go
Last active October 16, 2023 09:59
Golang. Round up the time
package main
import (
"fmt"
"time"
)
func roundUpTime(t time.Time, roundOn time.Duration) time.Time {
t = t.Round(roundOn)