created blogs detail banner
Showing
4 changed files
with
48 additions
and
0 deletions
src/api/blogs-detail/routes/blogs-detail.js
0 → 100644
-
Please register or sign in to post a comment
'use strict'; | ||
/** | ||
* blogs-detail controller | ||
*/ | ||
const { createCoreController } = require('@strapi/strapi').factories; | ||
module.exports = createCoreController('api::blogs-detail.blogs-detail'); |
'use strict'; | ||
/** | ||
* blogs-detail router | ||
*/ | ||
const { createCoreRouter } = require('@strapi/strapi').factories; | ||
module.exports = createCoreRouter('api::blogs-detail.blogs-detail'); |
'use strict'; | ||
/** | ||
* blogs-detail service | ||
*/ | ||
const { createCoreService } = require('@strapi/strapi').factories; | ||
module.exports = createCoreService('api::blogs-detail.blogs-detail'); |