add darwin specific uptime variant -- not implemented and never will

absences
William Perron 1 year ago
parent 3f93fd3ba6
commit 8578a8ad15
No known key found for this signature in database
GPG Key ID: D1815C43C9BA3DE1

@ -0,0 +1,12 @@
//go:build darwin
package themis
import (
"time"
)
// Uptime returns the time elapsed since the start of the current process ID.
func Uptime() (time.Duration, error) {
panic("not implemented")
}

@ -1,3 +1,5 @@
//go:build linux
package themis
import (
Loading…
Cancel
Save