diff --git a/README.md b/README.md index 146ece6..2751e90 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Have a look at the [Tour of Restate tutorial](https://docs.restate.dev/tour) in ## Releasing To create a new release, push a tag of the form `vX.Y.Z`. -Then [create a release via GitHub](https://github.com/restatedev/tour-of-restate-typescript/releases). +Then [create a release via GitHub](https://github.com/restatedev/tour-of-restate/releases). Releases of this repository are referred to by the [documentation](https://github.com/restatedev/documentation). Please update the version tag referenced on the [Tour of Restate](https://github.com/restatedev/documentation/blob/main/docs/tour.mdx) documentation page. diff --git a/java/src/main/java/dev/restate/tour/app/AppMain.java b/java/src/main/java/dev/restate/tour/app/AppMain.java index 0b91904..8d4e0d1 100644 --- a/java/src/main/java/dev/restate/tour/app/AppMain.java +++ b/java/src/main/java/dev/restate/tour/app/AppMain.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.app; import dev.restate.sdk.http.vertx.RestateHttpEndpointBuilder; diff --git a/java/src/main/java/dev/restate/tour/app/Checkout.java b/java/src/main/java/dev/restate/tour/app/Checkout.java index e9f5f70..2a09aa3 100644 --- a/java/src/main/java/dev/restate/tour/app/Checkout.java +++ b/java/src/main/java/dev/restate/tour/app/Checkout.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.app; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/app/TicketService.java b/java/src/main/java/dev/restate/tour/app/TicketService.java index 3aa89db..6426d62 100644 --- a/java/src/main/java/dev/restate/tour/app/TicketService.java +++ b/java/src/main/java/dev/restate/tour/app/TicketService.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.app; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/app/UserSession.java b/java/src/main/java/dev/restate/tour/app/UserSession.java index 603fd64..574cd3f 100644 --- a/java/src/main/java/dev/restate/tour/app/UserSession.java +++ b/java/src/main/java/dev/restate/tour/app/UserSession.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.app; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/auxiliary/EmailClient.java b/java/src/main/java/dev/restate/tour/auxiliary/EmailClient.java index deccf66..65d120c 100644 --- a/java/src/main/java/dev/restate/tour/auxiliary/EmailClient.java +++ b/java/src/main/java/dev/restate/tour/auxiliary/EmailClient.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.auxiliary; public class EmailClient { diff --git a/java/src/main/java/dev/restate/tour/auxiliary/PaymentClient.java b/java/src/main/java/dev/restate/tour/auxiliary/PaymentClient.java index 75b014a..7e93797 100644 --- a/java/src/main/java/dev/restate/tour/auxiliary/PaymentClient.java +++ b/java/src/main/java/dev/restate/tour/auxiliary/PaymentClient.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.auxiliary; public class PaymentClient { diff --git a/java/src/main/java/dev/restate/tour/auxiliary/TicketStatus.java b/java/src/main/java/dev/restate/tour/auxiliary/TicketStatus.java index c14d702..1cb4f68 100644 --- a/java/src/main/java/dev/restate/tour/auxiliary/TicketStatus.java +++ b/java/src/main/java/dev/restate/tour/auxiliary/TicketStatus.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.auxiliary; public enum TicketStatus { diff --git a/java/src/main/java/dev/restate/tour/part1/AppMain.java b/java/src/main/java/dev/restate/tour/part1/AppMain.java index c27f092..f0d051d 100644 --- a/java/src/main/java/dev/restate/tour/part1/AppMain.java +++ b/java/src/main/java/dev/restate/tour/part1/AppMain.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part1; import dev.restate.sdk.http.vertx.RestateHttpEndpointBuilder; diff --git a/java/src/main/java/dev/restate/tour/part1/Checkout.java b/java/src/main/java/dev/restate/tour/part1/Checkout.java index 15692b1..8eb1936 100644 --- a/java/src/main/java/dev/restate/tour/part1/Checkout.java +++ b/java/src/main/java/dev/restate/tour/part1/Checkout.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part1; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/part1/TicketService.java b/java/src/main/java/dev/restate/tour/part1/TicketService.java index bc74a64..c062aca 100644 --- a/java/src/main/java/dev/restate/tour/part1/TicketService.java +++ b/java/src/main/java/dev/restate/tour/part1/TicketService.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part1; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/part1/UserSession.java b/java/src/main/java/dev/restate/tour/part1/UserSession.java index 4cf8b29..3136ed4 100644 --- a/java/src/main/java/dev/restate/tour/part1/UserSession.java +++ b/java/src/main/java/dev/restate/tour/part1/UserSession.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part1; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/part2/AppMain.java b/java/src/main/java/dev/restate/tour/part2/AppMain.java index 1128363..14186dc 100644 --- a/java/src/main/java/dev/restate/tour/part2/AppMain.java +++ b/java/src/main/java/dev/restate/tour/part2/AppMain.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part2; import dev.restate.sdk.http.vertx.RestateHttpEndpointBuilder; diff --git a/java/src/main/java/dev/restate/tour/part2/Checkout.java b/java/src/main/java/dev/restate/tour/part2/Checkout.java index 4bf682d..928dd25 100644 --- a/java/src/main/java/dev/restate/tour/part2/Checkout.java +++ b/java/src/main/java/dev/restate/tour/part2/Checkout.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part2; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/part2/TicketService.java b/java/src/main/java/dev/restate/tour/part2/TicketService.java index 0c04026..58a2e07 100644 --- a/java/src/main/java/dev/restate/tour/part2/TicketService.java +++ b/java/src/main/java/dev/restate/tour/part2/TicketService.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part2; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/java/src/main/java/dev/restate/tour/part2/UserSession.java b/java/src/main/java/dev/restate/tour/part2/UserSession.java index 7eb9120..ab0aa73 100644 --- a/java/src/main/java/dev/restate/tour/part2/UserSession.java +++ b/java/src/main/java/dev/restate/tour/part2/UserSession.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part2; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/java/src/main/java/dev/restate/tour/part3/AppMain.java b/java/src/main/java/dev/restate/tour/part3/AppMain.java index 0c67200..09f041c 100644 --- a/java/src/main/java/dev/restate/tour/part3/AppMain.java +++ b/java/src/main/java/dev/restate/tour/part3/AppMain.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part3; import dev.restate.sdk.http.vertx.RestateHttpEndpointBuilder; diff --git a/java/src/main/java/dev/restate/tour/part3/Checkout.java b/java/src/main/java/dev/restate/tour/part3/Checkout.java index 8cfd388..d3af335 100644 --- a/java/src/main/java/dev/restate/tour/part3/Checkout.java +++ b/java/src/main/java/dev/restate/tour/part3/Checkout.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part3; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/part3/TicketService.java b/java/src/main/java/dev/restate/tour/part3/TicketService.java index 82b2d27..42fae4d 100644 --- a/java/src/main/java/dev/restate/tour/part3/TicketService.java +++ b/java/src/main/java/dev/restate/tour/part3/TicketService.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part3; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/java/src/main/java/dev/restate/tour/part3/UserSession.java b/java/src/main/java/dev/restate/tour/part3/UserSession.java index 013657e..e522e79 100644 --- a/java/src/main/java/dev/restate/tour/part3/UserSession.java +++ b/java/src/main/java/dev/restate/tour/part3/UserSession.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part3; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/java/src/main/java/dev/restate/tour/part4/AppMain.java b/java/src/main/java/dev/restate/tour/part4/AppMain.java index 13fa828..8bdf102 100644 --- a/java/src/main/java/dev/restate/tour/part4/AppMain.java +++ b/java/src/main/java/dev/restate/tour/part4/AppMain.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part4; import dev.restate.sdk.http.vertx.RestateHttpEndpointBuilder; diff --git a/java/src/main/java/dev/restate/tour/part4/Checkout.java b/java/src/main/java/dev/restate/tour/part4/Checkout.java index e02eb1e..dbeb04d 100644 --- a/java/src/main/java/dev/restate/tour/part4/Checkout.java +++ b/java/src/main/java/dev/restate/tour/part4/Checkout.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part4; import com.google.protobuf.BoolValue; diff --git a/java/src/main/java/dev/restate/tour/part4/TicketService.java b/java/src/main/java/dev/restate/tour/part4/TicketService.java index 0303f1b..58aca56 100644 --- a/java/src/main/java/dev/restate/tour/part4/TicketService.java +++ b/java/src/main/java/dev/restate/tour/part4/TicketService.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part4; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/java/src/main/java/dev/restate/tour/part4/UserSession.java b/java/src/main/java/dev/restate/tour/part4/UserSession.java index fb35ada..1dda191 100644 --- a/java/src/main/java/dev/restate/tour/part4/UserSession.java +++ b/java/src/main/java/dev/restate/tour/part4/UserSession.java @@ -1,3 +1,14 @@ +/* + * Copyright (c) 2023 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Tour of Restate Java, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/tour-of-restate + */ + package dev.restate.tour.part4; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/typescript/package-lock.json b/typescript/package-lock.json index f535681..c06f9ed 100644 --- a/typescript/package-lock.json +++ b/typescript/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@restatedev/tour-of-restate-typescript", + "name": "@restatedev/tour-of-restate", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@restatedev/tour-of-restate-typescript", + "name": "@restatedev/tour-of-restate", "version": "0.0.1", "license": "MIT", "dependencies": { diff --git a/typescript/package.json b/typescript/package.json index 878a2f8..b127386 100644 --- a/typescript/package.json +++ b/typescript/package.json @@ -1,5 +1,5 @@ { - "name": "@restatedev/tour-of-restate-typescript", + "name": "@restatedev/tour-of-restate", "version": "0.0.1", "description": "Tour of Restate's key features with the Typescript handler API", "type": "commonjs", diff --git a/typescript/src/app/app.ts b/typescript/src/app/app.ts index 4162a3f..7a54ae2 100644 --- a/typescript/src/app/app.ts +++ b/typescript/src/app/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/app/checkout.ts b/typescript/src/app/checkout.ts index d1fc896..7472e54 100644 --- a/typescript/src/app/checkout.ts +++ b/typescript/src/app/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/app/ticket_service.ts b/typescript/src/app/ticket_service.ts index fdb2bef..c5cdacd 100644 --- a/typescript/src/app/ticket_service.ts +++ b/typescript/src/app/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/app/user_session.ts b/typescript/src/app/user_session.ts index 39f6d13..8e4065c 100644 --- a/typescript/src/app/user_session.ts +++ b/typescript/src/app/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/auxiliary/email_client.ts b/typescript/src/auxiliary/email_client.ts index 8125d8d..2a7551b 100644 --- a/typescript/src/auxiliary/email_client.ts +++ b/typescript/src/auxiliary/email_client.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ export class EmailClient { diff --git a/typescript/src/auxiliary/payment_client.ts b/typescript/src/auxiliary/payment_client.ts index ef57f3d..fb20295 100644 --- a/typescript/src/auxiliary/payment_client.ts +++ b/typescript/src/auxiliary/payment_client.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ let i = 0; diff --git a/typescript/src/part1/app.ts b/typescript/src/part1/app.ts index 4162a3f..7a54ae2 100644 --- a/typescript/src/part1/app.ts +++ b/typescript/src/part1/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part1/checkout.ts b/typescript/src/part1/checkout.ts index d1fc896..7472e54 100644 --- a/typescript/src/part1/checkout.ts +++ b/typescript/src/part1/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part1/ticket_service.ts b/typescript/src/part1/ticket_service.ts index 623210d..9288932 100644 --- a/typescript/src/part1/ticket_service.ts +++ b/typescript/src/part1/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part1/user_session.ts b/typescript/src/part1/user_session.ts index 3dff6a2..0f23364 100644 --- a/typescript/src/part1/user_session.ts +++ b/typescript/src/part1/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part2/app.ts b/typescript/src/part2/app.ts index 4162a3f..7a54ae2 100644 --- a/typescript/src/part2/app.ts +++ b/typescript/src/part2/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part2/checkout.ts b/typescript/src/part2/checkout.ts index d1fc896..7472e54 100644 --- a/typescript/src/part2/checkout.ts +++ b/typescript/src/part2/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part2/ticket_service.ts b/typescript/src/part2/ticket_service.ts index 1260426..7699379 100644 --- a/typescript/src/part2/ticket_service.ts +++ b/typescript/src/part2/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part2/user_session.ts b/typescript/src/part2/user_session.ts index bf4b51b..f0d96b8 100644 --- a/typescript/src/part2/user_session.ts +++ b/typescript/src/part2/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part3/app.ts b/typescript/src/part3/app.ts index 4162a3f..7a54ae2 100644 --- a/typescript/src/part3/app.ts +++ b/typescript/src/part3/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part3/checkout.ts b/typescript/src/part3/checkout.ts index f331818..aa25304 100644 --- a/typescript/src/part3/checkout.ts +++ b/typescript/src/part3/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part3/ticket_service.ts b/typescript/src/part3/ticket_service.ts index 1260426..7699379 100644 --- a/typescript/src/part3/ticket_service.ts +++ b/typescript/src/part3/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part3/user_session.ts b/typescript/src/part3/user_session.ts index 21927b6..e931064 100644 --- a/typescript/src/part3/user_session.ts +++ b/typescript/src/part3/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part4/app.ts b/typescript/src/part4/app.ts index 4162a3f..7a54ae2 100644 --- a/typescript/src/part4/app.ts +++ b/typescript/src/part4/app.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part4/checkout.ts b/typescript/src/part4/checkout.ts index d118138..0358d9f 100644 --- a/typescript/src/part4/checkout.ts +++ b/typescript/src/part4/checkout.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part4/ticket_service.ts b/typescript/src/part4/ticket_service.ts index 1260426..7699379 100644 --- a/typescript/src/part4/ticket_service.ts +++ b/typescript/src/part4/ticket_service.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk"; diff --git a/typescript/src/part4/user_session.ts b/typescript/src/part4/user_session.ts index bb5e08c..b48ae68 100644 --- a/typescript/src/part4/user_session.ts +++ b/typescript/src/part4/user_session.ts @@ -6,7 +6,7 @@ * * You can find a copy of the license in the file LICENSE * in the root directory of this repository or package or at - * https://github.com/restatedev/tour-of-restate-typescript + * https://github.com/restatedev/tour-of-restate */ import * as restate from "@restatedev/restate-sdk";