diff --git a/src/modules/tenderly/tenderly.controller.ts b/src/modules/tenderly/tenderly.controller.ts index bbcb140..040d976 100644 --- a/src/modules/tenderly/tenderly.controller.ts +++ b/src/modules/tenderly/tenderly.controller.ts @@ -1,4 +1,4 @@ -import { Body, Post, JsonController, QueryParam } from 'routing-controllers'; +import { Body, JsonController, Post, QueryParam } from 'routing-controllers'; import { Inject, Service } from 'typedi'; import { SimulationResponseData } from '../http'; @@ -8,7 +8,7 @@ import { SimulationsRequest } from './tenderly.interface'; import { TenderlyService } from './tenderly.service'; @Service() -@JsonController('/tenderly') +@JsonController('') export class TenderlyController { constructor(@Inject() private readonly tenderlyService: TenderlyService) {}