go-ssb-room/roomdb/sqlite/aliases.go

17 lines
275 B
Go

// SPDX-License-Identifier: MIT
package sqlite
import (
"database/sql"
"github.com/ssb-ngi-pointer/go-ssb-room/roomdb"
)
// compiler assertion to ensure the struct fullfills the interface
var _ roomdb.AliasService = (*Aliases)(nil)
type Aliases struct {
db *sql.DB
}