mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-03-22 22:00:13 +00:00
12 lines
112 B
Go
12 lines
112 B
Go
|
|
package app
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func Fatal(args ...any) {
|
||
|
|
fmt.Fprintln(os.Stderr, args...)
|
||
|
|
os.Exit(1)
|
||
|
|
}
|