server_unix.go 180 B

123456789101112
  1. //go:build !windows
  2. package lifecycle
  3. import (
  4. "context"
  5. "os/exec"
  6. )
  7. func getCmd(ctx context.Context, cmd string) *exec.Cmd {
  8. return exec.CommandContext(ctx, cmd, "serve")
  9. }