1 2 3 4 5 6 7 8 9
package internal import ( "os" "hakurei.app/internal/hlog" ) func Exit(code int) { hlog.BeforeExit(); os.Exit(code) }