mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
20 lines
230 B
Go
20 lines
230 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/coder/coder/v2/agent/agentexec"
|
|
)
|
|
|
|
func main() {
|
|
err := agentexec.CLI()
|
|
if err != nil {
|
|
_, _ = fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|