初始化项目框架,完成部分接口开发
This commit is contained in:
18
api/chapter/chapter.go
Normal file
18
api/chapter/chapter.go
Normal file
@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package chapter
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"server/api/chapter/v1"
|
||||
)
|
||||
|
||||
type IChapterV1 interface {
|
||||
ChapterList(ctx context.Context, req *v1.ChapterListReq) (res *v1.ChapterListRes, err error)
|
||||
ChapterAdd(ctx context.Context, req *v1.ChapterAddReq) (res *v1.ChapterAddRes, err error)
|
||||
ChapterEdit(ctx context.Context, req *v1.ChapterEditReq) (res *v1.ChapterEditRes, err error)
|
||||
ChapterDel(ctx context.Context, req *v1.ChapterDelReq) (res *v1.ChapterDelRes, err error)
|
||||
}
|
||||
Reference in New Issue
Block a user