Remove references to ChatSDK as a product

This commit is contained in:
Jazz Turner-Baggs 2026-02-12 18:20:18 -08:00
parent d0f3632bea
commit 733772c5e5
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# Nim Chat POC
# Logos Chat
This is the technical proof of a modular e2ee chat protocol using Waku. You can find discussion and details [here](https://github.com/waku-org/specs/pull/73)

View File

@ -1,7 +1,7 @@
## liblogoschat - C bindings for the Chat SDK
## liblogoschat - C bindings for Logos-Chat
## Main entry point for the shared library
##
## This library exposes the Chat SDK functionality through a C-compatible FFI interface.
## This library exposes the chat functionality through a C-compatible FFI interface.
## It uses nim-ffi for thread-safe async request handling.
import std/[json, options]

View File

@ -77,6 +77,6 @@ task pingpong, "Build the Pingpong example":
let name = "pingpong"
buildBinary name, "./", "-d:chronicles_log_level='INFO' -d:chronicles_disabled_topics='waku node' "
task liblogoschat, "Build the Chat SDK shared library (C bindings)":
buildLibrary "logoschat", "library/",
task liblogoschat, "Build the Logos-Chat shared library (C bindings)":
buildLibrary "logoschat", "library/",
"-d:chronicles_log_level='INFO' -d:chronicles_enabled=on --path:src --path:vendor/nim-ffi"