Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Eric <eric.warehime@gmail.com>
  • Loading branch information
dydxwill authored and Eric-Warehime committed Mar 12, 2024
1 parent 86617dd commit 735d9a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const router = express.Router();
const controllerName: string = 'sparklines-controller';

@Route('sparklines')
class FillsController extends Controller {
class SparklinesController extends Controller {
@Get('/')
async get(
@Query() timePeriod: SparklineTimePeriod,
Expand Down Expand Up @@ -77,7 +77,7 @@ router.get(

const start: number = Date.now();
try {
const controller: FillsController = new FillsController();
const controller: SparklinesController = new SparklinesController();
const sparklineResponse: SparklineResponseObject = await controller.get(
timePeriod,
);
Expand Down

0 comments on commit 735d9a8

Please sign in to comment.