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