initial commits

master
Charles Iliya Krempeaux 2021-11-22 23:42:46 -08:00
parent 058466e3d8
commit f43373f199
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import (
func Errorf(format string, a ...interface{}) error { func Errorf(format string, a ...interface{}) error {
var s string =fmt.Sprintf(format, a...) var s string = fmt.Sprintf(format, a...)
return Error(s) return Error(s)
} }