mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-30 02:26:16 -06:00
8 lines
338 B
Go
8 lines
338 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, DBError)
|
|
}
|