MCPcopy
hub / github.com/FoalTS/foal / SomeService

Class SomeService

tests/e2e-tests/src/tests/controller-inheritance.spec.ts:127–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125 }
126
127 class SomeService implements CRUDService {
128 create(body: any) {
129 return body;
130 }
131 findById(id: any) {
132 throw new Error('Method not implemented.');
133 }
134 update(id: any, body: any) {
135 throw new Error('Method not implemented.');
136 }
137 deleteById(id: any) {
138 throw new Error('Method not implemented.');
139 }
140 }
141
142 @ApiInfo({
143 title: 'Some API',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected