Skip to content

Commit

Permalink
Rename aux into auxiliary (#35)
Browse files Browse the repository at this point in the history
Don't use aux as a directory name since it is a reserved name
on Windows platforms.

This fixes #34.
  • Loading branch information
tillrohrmann authored Oct 24, 2023
1 parent b754d90 commit 221bbff
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion typescript/ecommerce-store/services/src/email_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import * as restate from "@restatedev/restate-sdk";
import { EmailSender, SendEmailRequest } from "./generated/proto/shoppingcart";
import { Empty } from "./generated/proto/google/protobuf/empty";
import { MailgunClient } from "./aux/mailgun_client";
import { MailgunClient } from "./auxiliary/mailgun_client";

export class EmailSvc implements EmailSender {
private mailgunClient: MailgunClient;
Expand Down
2 changes: 1 addition & 1 deletion typescript/ecommerce-store/services/src/payment_gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
ChargeResponse,
PaymentGateway,
} from "./generated/proto/shoppingcart";
import { StripeClient } from "./aux/stripe_client";
import { StripeClient } from "./auxiliary/stripe_client";

export class PaymentGatewaySvc implements PaymentGateway {
async charge(request: ChargeRequest): Promise<ChargeResponse> {
Expand Down
2 changes: 1 addition & 1 deletion typescript/food-ordering/services/src/order_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import * as restate from "@restatedev/restate-sdk";
import { Order, OrderStatus } from "./types/types";
import { DeliveryProviderApiClient } from "./aux/delivery_provider_api_client";
import { DeliveryProviderApiClient } from "./auxiliary/delivery_provider_api_client";
import axios from "axios";

const STATUS = "status";
Expand Down
4 changes: 2 additions & 2 deletions typescript/ticket-reservation/src/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 { StripeClient } from "./aux/stripe_client";
import { EmailClient } from "./aux/email_client";
import { StripeClient } from "./auxiliary/stripe_client";
import { EmailClient } from "./auxiliary/email_client";

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

0 comments on commit 221bbff

Please sign in to comment.