17 lines
229 B
Go
17 lines
229 B
Go
|
package blog
|
||
|
|
||
|
type Service interface {
|
||
|
// 创建博客
|
||
|
CreateBlog()
|
||
|
// 博客列表查询
|
||
|
QueryBlog()
|
||
|
// 博客详情查询
|
||
|
DescribeBlog()
|
||
|
// 博客编辑
|
||
|
UpdateBlog()
|
||
|
// 发布
|
||
|
PublishBlog()
|
||
|
// 删除
|
||
|
DeleteBlog()
|
||
|
}
|