diff options
Diffstat (limited to 'internal/exit.go')
| -rw-r--r-- | internal/exit.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/exit.go b/internal/exit.go new file mode 100644 index 00000000..67819436 --- /dev/null +++ b/internal/exit.go @@ -0,0 +1,9 @@ +package internal + +import ( + "os" + + "git.gensokyo.uk/security/fortify/internal/fmsg" +) + +func Exit(code int) { fmsg.BeforeExit(); os.Exit(code) } |
