go-ssb-room/admindb/sqlite/auth_withssb.go

17 lines
271 B
Go
Raw Normal View History

2021-02-09 11:53:33 +00:00
// SPDX-License-Identifier: MIT
2021-02-08 16:47:42 +00:00
package sqlite
import (
"database/sql"
"github.com/ssb-ngi-pointer/go-ssb-room/admindb"
2021-02-08 16:47:42 +00:00
)
// make sure to implement interfaces correctly
var _ admindb.AuthWithSSBService = (*AuthWithSSB)(nil)
type AuthWithSSB struct {
db *sql.DB
}