mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-11 07:20:19 +00:00
12 lines
92 B
Go
12 lines
92 B
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func Exit(s string) {
|
|
fmt.Printf(s)
|
|
os.Exit(1)
|
|
}
|