mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
11 lines
168 B
Go
11 lines
168 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package agentexec
|
|
|
|
import "golang.org/x/xerrors"
|
|
|
|
func CLI() error {
|
|
return xerrors.New("agent-exec is only supported on Linux")
|
|
}
|