13 lines
282 B
Go
13 lines
282 B
Go
|
package guestbook
|
||
|
|
||
|
const DateFormat = "2006-01-02 15:04:05"
|
||
|
|
||
|
type Guestbook interface {
|
||
|
Entries(page, pageSize int64) ([]*Entry, error)
|
||
|
NewEntry(entry *Entry) error
|
||
|
DeleteEntry(entryID int64) error
|
||
|
NewReply(reply *Reply) error
|
||
|
DeleteReply(entryID int64) error
|
||
|
Close() error
|
||
|
}
|