mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-28 09:58:52 +03:00
11 lines
149 B
Go
11 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.
|
|
}
|