mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
21 lines
307 B
Go
21 lines
307 B
Go
|
// +build plan9
|
||
|
|
||
|
// Copyright (c) 2020 Shivaram Lingamneni
|
||
|
// released under the MIT license
|
||
|
|
||
|
package irc
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// ServerExitSignals are the signals the server will exit on.
|
||
|
// (no SIGQUIT on plan9)
|
||
|
ServerExitSignals = []os.Signal{
|
||
|
syscall.SIGINT,
|
||
|
syscall.SIGTERM,
|
||
|
}
|
||
|
)
|