mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-07-28 20:59:08 +00:00
12 lines
149 B
Go
12 lines
149 B
Go
//go:build unix
|
|
|
|
package aghos
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func sendShutdownSignal(_ chan<- os.Signal) {
|
|
// On Unix we are already notified by the system.
|
|
}
|