feat: database backend add ssdb support

Change-Id: I054c5fc9b02f613601781de8613d684faa0ea7f2
This commit is contained in:
hudeng
2022-09-22 16:08:27 +08:00
committed by André Roth
parent ab18da351d
commit b3b6ce3539
7 changed files with 826 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package ssdb
import (
"fmt"
"os"
)
func ssdbLog(a ...interface{}) {
if os.Getenv("SSDB_DEBUG") != "" {
fmt.Println(a...)
}
}