user authentication structure in place

This commit is contained in:
zomo
2026-01-05 23:10:00 -06:00
parent 9770ef9f21
commit 5c6e93c7e4
9 changed files with 261 additions and 112 deletions

View File

@@ -15,10 +15,10 @@ func InitDBConn(conf *util.Config) (*DBConn, error) {
if err != nil {
return nil, err
}
return &DBConn{ hot, cold }, nil
return &DBConn{hot, cold}, nil
}
type DBConn struct {
Hot *db_hot.DBHotConn
Hot *db_hot.DBHotConn
Cold *db_cold.DBColdConn
}