init 1.2.x

This commit is contained in:
YouROK
2020-11-06 15:40:58 +03:00
parent ce87ecabcb
commit a1e17b1cf3
57 changed files with 670 additions and 4003 deletions

9
src/server/log/log.go Normal file
View File

@@ -0,0 +1,9 @@
package log
import (
"log"
)
func TLogln(v ...interface{}) {
log.Println(v...)
}