Initial commit

This commit is contained in:
lash
2024-10-23 21:01:10 +01:00
commit 7c10a881fe
10 changed files with 262 additions and 0 deletions

10
lookup/db.go Normal file
View File

@@ -0,0 +1,10 @@
package lookup
import (
"git.defalsify.org/vise.git/db"
)
func GetSessionIdByAddress(store db.Db, address string) (string, error) {
var r string
return r, nil
}