kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 9fec810ce8df78f346ae0db18601dfe10290d3bd
parent 98fba44147346cccc274d6eb4cc0af6df87c5815
Author: Joris Vink <joris@coders.se>
Date:   Mon, 23 Jan 2023 21:56:49 +0100

add lua to built-ins log

Diffstat:
src/kore.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/kore.c b/src/kore.c @@ -846,6 +846,9 @@ kore_server_start(int argc, char *argv[]) #if defined(KORE_USE_CURL) "curl " #endif +#if defined(KORE_USE_LUA) + "lua " +#endif ); }