Skip to content

Commit

Permalink
Merge pull request #18 from connected-hil/fix/import-paths
Browse files Browse the repository at this point in the history
fix: fixes import paths in ocpp call
  • Loading branch information
larte authored Apr 29, 2024
2 parents 763d8ef + e7388ef commit 0080c61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/message/ocpp-call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import {

import { randomUUID } from "crypto";
import { OCPPCallResult } from "./ocpp-call-result";
import { actionValidatorV16 } from "src/validation/v16";
import { actionValidatorV201 } from "src/validation/v201";
import { type RpcCallV16 } from "src/types/v16";
import { type RpcCallV201 } from "src/types/v201";
import { actionValidatorV16 } from "./../validation/v16";
import { actionValidatorV201 } from "./../validation/v201";
import { type RpcCallV16 } from "./../types/v16";
import { type RpcCallV201 } from "./../types/v201";

export interface iOCPPCall<
RequestPayloadType extends OCPPRequestPayloadType,
Expand Down

0 comments on commit 0080c61

Please sign in to comment.