Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Rename aux directory into auxiliary #10

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions src/part3/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

import * as restate from "@restatedev/restate-sdk";
import { v4 as uuid } from "uuid";
import { PaymentClient } from "../aux/payment_client";
import { EmailClient } from "../aux/email_client";
import { PaymentClient } from "../auxiliary/payment_client";
import { EmailClient } from "../auxiliary/email_client";

const checkout = async (
ctx: restate.RpcContext,
Expand Down
4 changes: 2 additions & 2 deletions src/part4/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

import * as restate from "@restatedev/restate-sdk";
import { v4 as uuid } from "uuid";
import { EmailClient } from "../aux/email_client";
import { PaymentClient } from "../aux/payment_client";
import { EmailClient } from "../auxiliary/email_client";
import { PaymentClient } from "../auxiliary/payment_client";

const checkout = async (
ctx: restate.RpcContext,
Expand Down
Loading