MCPcopy Index your code
hub / github.com/ParallelTask/dinoloop / addParse

Method addParse

tests/integration/parse.spec.ts:103–110  ·  view source on GitHub ↗
(
        @Parse(() => 'test_body') body: any,
        @Parse(() => 'test_user') user: string)

Source from the content-addressed store, hash-verified

101 }
102 @HttpPost('/addParse/:user/:op')
103 addParse(
104 @Parse(() => 'test_body') body: any,
105 @Parse(() => 'test_user') user: string): any {
106 return {
107 body: body,
108 user: user
109 };
110 }
111 @HttpGet('/handler/:id')
112 handler(@Parse(customHandler) id: any): any {
113 return id;

Callers

nothing calls this directly

Calls 1

ParseFunction · 0.85

Tested by

no test coverage detected