I’m creating customized relaxation useful resource utilizing this code:
<?php      /**      * Offers a useful resource to get view modes by entity and bundle.      *      * @RestResource(      *   id = "region_node_rest_resource",      *   label = @Translation("Area node relaxation useful resource"),      *         *   uri_paths = {      *     "canonical" = "/standortimporter/region_node_rest_resource"      *   }      * )      */   namespace DrupalstandortimporterPluginrestresource;   use DrupalCoreSessionAccountProxyInterface; use DrupalnodeEntityNode; use DrupalrestPluginResourceBase; use DrupalrestResourceResponse; use SymfonyComponentDependencyInjectionContainerInterface; use SymfonyComponentHttpKernelExceptionAccessDeniedHttpException; use PsrLogLoggerInterface;       class regionNodeRestResource extends ResourceBase {         public operate publish() {                $node = "hey right here";        return new ResourceResponse($node);       }      } 
And getting this error:
{“message”:”No route discovered for u0022GET /standortimporter/region_node_rest_resourceu0022″}