MCPcopy Create free account
hub / github.com/PacoVK/tapir / getModuleByName

Method getModuleByName

src/main/java/api/Modules.java:46–51  ·  view source on GitHub ↗
(String namespace, String name, String provider)

Source from the content-addressed store, hash-verified

44 }
45
46 @GET
47 @Path("{namespace}/{name}/{provider}")
48 public Response getModuleByName(String namespace, String name, String provider) throws Exception {
49 Module module = new Module(namespace, name, provider);
50 return Response.ok(moduleService.getModule(module.getId())).build();
51 }
52
53 @POST
54 @Consumes(MediaType.MULTIPART_FORM_DATA)

Callers

nothing calls this directly

Calls 2

getIdMethod · 0.95
getModuleMethod · 0.65

Tested by

no test coverage detected