| 105 | {} |
| 106 | |
| 107 | class PeopleApi extends HttpApiGroup.make("people") |
| 108 | .add( |
| 109 | HttpApiEndpoint.get("list", "/") |
| 110 | .addSuccess(Schema.Array(User)) |
| 111 | ) |
| 112 | .prefix("/people") |
| 113 | {} |
| 114 | |
| 115 | class AnotherApi extends HttpApi.make("another").add(PeopleApi).prefix("/v2") {} |
| 116 |
nothing calls this directly
no test coverage detected
searching dependent graphs…