12 lines
165 B
Go
12 lines
165 B
Go
|
package sriracha
|
||
|
|
||
|
type ExtensionPost interface {
|
||
|
Extension
|
||
|
|
||
|
InsertPost(post *Post) error
|
||
|
|
||
|
DeletePost(post *Post) error
|
||
|
|
||
|
RenderPost(post *Post) ([]byte, error)
|
||
|
}
|