tendermint/common/panic.go

12 lines
92 B
Go
Raw Normal View History

2014-06-17 01:28:43 -07:00
package common
2014-06-05 11:04:56 -07:00
import (
2014-07-01 14:50:24 -07:00
"fmt"
"os"
2014-06-05 11:04:56 -07:00
)
2014-12-29 18:09:06 -08:00
func Exit(s string) {
fmt.Printf(s)
os.Exit(1)
}