tendermint/common/panic.go
2014-12-29 18:09:06 -08:00

12 lines
92 B
Go

package common
import (
"fmt"
"os"
)
func Exit(s string) {
fmt.Printf(s)
os.Exit(1)
}