doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/go/GoHttpRouterScanner.java [384:397]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String prefix = groupPrefixes.getOrDefault(routerVar, "");
            String fullPath = combinePaths(prefix, path);

            ApiEndpoint endpoint = new ApiEndpoint(
                componentId,
                ApiType.REST,
                fullPath,
                method,
                handler,
                null, // requestSchema
                null, // responseSchema
                null  // authentication
            );
            apiEndpoints.add(endpoint);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/go/GoHttpRouterScanner.java [488:501]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String prefix = groupPrefixes.getOrDefault(routerVar, "");
            String fullPath = combinePaths(prefix, path);

            ApiEndpoint endpoint = new ApiEndpoint(
                componentId,
                ApiType.REST,
                fullPath,
                method,
                handler,
                null,
                null,
                null
            );
            apiEndpoints.add(endpoint);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



