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';