mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-07-16 12:08:04 +00:00
feat: database backend add ssdb support
Change-Id: I054c5fc9b02f613601781de8613d684faa0ea7f2
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package ssdb
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func ssdbLog(a ...interface{}) {
|
||||
if os.Getenv("SSDB_DEBUG") != "" {
|
||||
fmt.Println(a...)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user