This commit is contained in:
Jae Kwon
2014-07-01 14:50:24 -07:00
parent fa07748d23
commit c40fc65e6b
41 changed files with 3176 additions and 2938 deletions

View File

@ -1,9 +1,9 @@
package common
import (
"fmt"
"fmt"
)
func Panicf(s string, args ...interface{}) {
panic(fmt.Sprintf(s, args...))
panic(fmt.Sprintf(s, args...))
}