mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
15 lines
244 B
Go
15 lines
244 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/oklog/run"
|
|
)
|
|
|
|
func signalHandler(ctx context.Context) (execute func() error, interrupt func(error)) {
|
|
return run.SignalHandler(ctx, os.Interrupt)
|
|
}
|
|
|
|
func sigusrListener(rootDir string) {
|
|
}
|