mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-04 15:13:18 -06:00
8 lines
336 B
Go
8 lines
336 B
Go
package db
|
|
|
|
import "github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
type Notification interface {
|
|
// GetNotificationsForAccount returns a list of notifications that pertain to the given accountID.
|
|
GetNotificationsForAccount(accountID string, limit int, maxID string, sinceID string) ([]*gtsmodel.Notification, error)
|
|
}
|