mirror of
https://github.com/ente-io/ente.git
synced 2025-05-29 22:09:43 +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
|
|
}
|