service-clean.go 387 B

1234567891011121314151617
  1. package api
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. func AssetClean(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  6. // ret, err := repo.RepoDeleteDocs(apictx.CreateRepoCtx(), repo.CollectionAssetCategory, bson.M{})
  7. // if err != nil {
  8. // return ret, err
  9. // }
  10. // return repo.RepoDeleteDocs(apictx.CreateRepoCtx(), repo.CollectionCategory, bson.M{})
  11. return nil, nil
  12. }