You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/store/store.go

22 lines
358 B
Go

package store
import (
"database/sql"
"github.com/usememos/memos/server/profile"
)
// Store provides database access to all raw objects
type Store struct {
db *sql.DB
profile *profile.Profile
}
// New creates a new instance of Store
func New(db *sql.DB, profile *profile.Profile) *Store {
return &Store{
db: db,
profile: profile,
}
}