mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 19:01:09 -04:00
12 lines
144 B
Go
12 lines
144 B
Go
package sysinfo
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Usage contains process process times.
|
|
type Usage struct {
|
|
System time.Duration
|
|
User time.Duration
|
|
}
|