godash/internal/system/host.go

12 lines
121 B
Go
Raw Normal View History

2023-06-14 21:53:27 +02:00
package system
import (
"runtime"
)
func staticHost() Host {
var h Host
h.Architecture = runtime.GOARCH
return h
}