atexit_other.go 221 B

12345678910111213141516
  1. //go:build windows || plan9
  2. package atexit
  3. import (
  4. "os"
  5. "github.com/rclone/rclone/lib/exitcode"
  6. )
  7. var exitSignals = []os.Signal{os.Interrupt}
  8. func exitCode(_ os.Signal) int {
  9. return exitcode.UncategorizedError
  10. }