14 lines
339 B
Go
14 lines
339 B
Go
package controller
|
|
|
|
import (
|
|
"context"
|
|
|
|
"slogan-agent/styleagent/model/dto"
|
|
"slogan-agent/styleagent/service"
|
|
)
|
|
|
|
// CategoryList 联盟分类列表(客户端 chips)
|
|
func (c *cps) CategoryList(ctx context.Context, req *dto.CpsCategoryListReq) (res *dto.CpsCategoryListRes, err error) {
|
|
return service.CpsCategoryService.List(ctx)
|
|
}
|