This commit is contained in:
Jae Kwon
2014-06-17 01:28:43 -07:00
parent 6f6582100d
commit 4e09037e9f
5 changed files with 43 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
package common
import (
"fmt"
)
func panicf(s string, args ...interface{}) {
panic(fmt.Sprintf(s, args...))
}