mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 14:39:31 +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,
|
|
}
|
|
)
|