2022-05-16 07:37:23 +08:00
|
|
|
package store
|
|
|
|
|
2022-05-22 00:59:22 +08:00
|
|
|
import (
|
|
|
|
"database/sql"
|
2022-05-22 09:29:34 +08:00
|
|
|
"memos/server/profile"
|
2022-05-22 00:59:22 +08:00
|
|
|
)
|
|
|
|
|
2022-05-16 07:37:23 +08:00
|
|
|
// Store provides database access to all raw objects
|
|
|
|
type Store struct {
|
2022-05-22 00:59:22 +08:00
|
|
|
db *sql.DB
|
2022-05-22 09:29:34 +08:00
|
|
|
profile *profile.Profile
|
2022-05-16 07:37:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// New creates a new instance of Store
|
2022-05-22 09:29:34 +08:00
|
|
|
func New(db *sql.DB, profile *profile.Profile) *Store {
|
2022-05-16 07:37:23 +08:00
|
|
|
return &Store{
|
2022-05-22 00:59:22 +08:00
|
|
|
db: db,
|
|
|
|
profile: profile,
|
2022-05-16 07:37:23 +08:00
|
|
|
}
|
|
|
|
}
|