1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-09-15 18:56:59 +00:00

Finish register user

This commit is contained in:
Unknown 2014-02-18 17:31:16 -05:00
parent 3eb1ab9e8b
commit b455478df8
5 changed files with 54 additions and 19 deletions

View file

@ -19,3 +19,11 @@ func init() {
func Info(format string, v ...interface{}) {
logger.Info(format, v...)
}
func Error(format string, v ...interface{}) {
logger.Error(format, v...)
}
func Warn(format string, v ...interface{}) {
logger.Warn(format, v...)
}