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

Commit

Permalink
Rename aux directory into auxiliary (#8)
Browse files Browse the repository at this point in the history
aux is a reserved name on Windows platforms.

This fixes #7.
  • Loading branch information
tillrohrmann authored Oct 24, 2023
1 parent 3ade198 commit 33a9eef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
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

0 comments on commit 33a9eef

Please sign in to comment.