mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
14 lines
313 B
Go
14 lines
313 B
Go
package server
|
|
|
|
import (
|
|
_ "github.com/mattn/go-sqlite3" // SQLite driver
|
|
"time"
|
|
)
|
|
|
|
type cache interface {
|
|
AddMessage(m *message) error
|
|
Messages(topic string, since sinceTime) ([]*message, error)
|
|
MessageCount(topic string) (int, error)
|
|
Topics() (map[string]*topic, error)
|
|
Prune(keep time.Duration) error
|
|
}
|