mirror of
https://github.com/ente-io/ente.git
synced 2025-05-30 06:19:44 +00:00
12 lines
237 B
Go
12 lines
237 B
Go
package authenticator
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
// Repository defines the methods for inserting, updating and retrieving
|
|
// authenticator related keys and entities from the underlying repository
|
|
type Repository struct {
|
|
DB *sql.DB
|
|
}
|