From f507cda9606910941e71edbecafd344fa5f5d492 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Sat, 28 Mar 2026 03:16:38 -0400 Subject: [PATCH] README: Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 537d374..14de1e5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # CPPBESSOT (C++ BackEnd Single Source of Truth): -A framework that uses OpenAI to maintain a single source of truth for the data model of a software project. It generates C++ headers, JSON serdes, ODB-based ORM headers, DB migrations, Typescript types and Zod schemas. I.e: a type-safe backend-to-frontend data model manager. +A framework that uses OpenAPI to maintain a single source of truth for the data model of a software project. It generates C++ headers, JSON serdes, ODB-based ORM headers, DB migrations, Typescript types and Zod schemas. I.e: a type-safe backend-to-frontend data model manager. Basically, it enables one to write a web application whose backend is written in C++. This C++ web application can communicate seamlessly with a Typescript frontend without losing type-safety. We leverage Zod to enforce type safety. So you get type-safety from end to end. From C++ through to the Typescript frontend.