From 23fa218df249995dceda0ab506d1d182307367fd Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 15 Apr 2021 20:48:44 +0200 Subject: [PATCH] Rename simple-chat --- schemas/{chat-protocol.prs => simple-chat-protocol.prs} | 0 src/gen/{chat-protocol.ts => simple-chat-protocol.ts} | 0 src/{chat-client-standalone.ts => simple-chat.ts} | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename schemas/{chat-protocol.prs => simple-chat-protocol.prs} (100%) rename src/gen/{chat-protocol.ts => simple-chat-protocol.ts} (100%) rename src/{chat-client-standalone.ts => simple-chat.ts} (96%) diff --git a/schemas/chat-protocol.prs b/schemas/simple-chat-protocol.prs similarity index 100% rename from schemas/chat-protocol.prs rename to schemas/simple-chat-protocol.prs diff --git a/src/gen/chat-protocol.ts b/src/gen/simple-chat-protocol.ts similarity index 100% rename from src/gen/chat-protocol.ts rename to src/gen/simple-chat-protocol.ts diff --git a/src/chat-client-standalone.ts b/src/simple-chat.ts similarity index 96% rename from src/chat-client-standalone.ts rename to src/simple-chat.ts index a18503b..d64afd3 100644 --- a/src/chat-client-standalone.ts +++ b/src/simple-chat.ts @@ -1,4 +1,4 @@ -import { $Present, $Says, asPresent, asSays, fromPresent, fromSays, Present, Says } from "./gen/chat-protocol.js"; +import { $Present, $Says, asPresent, asSays, fromPresent, fromSays, Present, Says } from "./gen/simple-chat-protocol.js"; import { fromObserve, Observe } from "./gen/dataspace.js"; import { Assertion, Handle, LocalAction, Ref, Turn } from "./actor.js"; import readline from 'readline';