mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 11:26:29 +02:00
14 lines
189 B
Go
14 lines
189 B
Go
// +build darwin
|
|
|
|
package envoy
|
|
|
|
import (
|
|
"context"
|
|
"syscall"
|
|
)
|
|
|
|
var sysProcAttr = &syscall.SysProcAttr{
|
|
Setpgid: true,
|
|
}
|
|
|
|
func (srv *Server) runProcessCollector(ctx context.Context) {}
|