feat(kol): workspace KOL cards + article source type

This commit is contained in:
2026-04-17 15:19:11 +08:00
parent 641383a585
commit b6bd4f02fb
16 changed files with 192 additions and 5 deletions
@@ -60,3 +60,12 @@ func (h *WorkspaceHandler) TemplateCards(c *gin.Context) {
}
response.Success(c, data)
}
func (h *WorkspaceHandler) KolCards(c *gin.Context) {
data, err := h.svc.KolCards(c.Request.Context())
if err != nil {
response.Error(c, err)
return
}
response.Success(c, data)
}