Post TechEd cosmetics (#619)

* Post TechEd cosmetics

* Update package-lock.json
This commit is contained in:
Daniel Hutzel
2024-07-15 14:45:03 +02:00
committed by GitHub
parent 3161758e5f
commit 82c633ce01
4 changed files with 7 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
const cds = require('@sap/cds')
module.exports = class CatalogService extends cds.ApplicationService { init() {
class CatalogService extends cds.ApplicationService { init() {
const { Books } = cds.entities('sap.capire.bookshop')
const { ListOfBooks } = this.entities
@@ -33,3 +34,5 @@ module.exports = class CatalogService extends cds.ApplicationService { init() {
// Delegate requests to the underlying generic service
return super.init()
}}
module.exports = CatalogService