Files
gotenberg/internal/pkg/xtime/xtime.go
Julien Neuhart 7bfbda4490 huge refactoring
2019-07-23 13:57:18 +02:00

11 lines
189 B
Go

package xtime
import (
"time"
)
// Duration creates a time.Duration from seconds.
func Duration(seconds float64) time.Duration {
return time.Duration(1000*seconds) * time.Millisecond
}