mirror of https://github.com/usememos/memos
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.
28 lines
553 B
Go
28 lines
553 B
Go
2 years ago
|
package sqlite
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/usememos/memos/store"
|
||
|
)
|
||
|
|
||
|
// nolint
|
||
|
func (d *DB) CreateInbox(ctx context.Context, create *store.Inbox) (*store.Inbox, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
// nolint
|
||
|
func (d *DB) ListInboxes(ctx context.Context, find *store.FindInbox) ([]*store.Inbox, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
// nolint
|
||
|
func (d *DB) UpdateInbox(ctx context.Context, update *store.UpdateInbox) (*store.Inbox, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
// nolint
|
||
|
func (d *DB) DeleteInbox(ctx context.Context, delete *store.DeleteInbox) error {
|
||
|
return nil
|
||
|
}
|