mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
11 lines
190 B
Go
11 lines
190 B
Go
//+build !windows,!plan9
|
|
|
|
package atexit
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
var exitSignals = []os.Signal{syscall.SIGINT, syscall.SIGTERM} // Not syscall.SIGQUIT as we want the default behaviour
|