feat: implement entity and wiki management services, repositories, and routes with associated controllers
Build and Release / release (push) Successful in 1m34s

This commit is contained in:
2026-05-27 18:32:35 +07:00
parent e35f67e26b
commit d02006390b
15 changed files with 442 additions and 2 deletions
+6
View File
@@ -29,3 +29,9 @@ type WikiContentResponse struct {
Preview string `json:"preview"`
CreatedAt *time.Time `json:"created_at"`
}
type WikiContentPreviewResponse struct {
ID string `json:"id"`
Preview string `json:"preview"`
CreatedAt *time.Time `json:"created_at"`
}