From ed565a5733ac3d42d1717d4e89136535dd9c2856 Mon Sep 17 00:00:00 2001 From: SimonFJ20 Date: Wed, 5 Mar 2025 11:53:19 +0100 Subject: [PATCH] move runtime to backend/ --- {slige/runtime => backend}/.clang-format | 0 {slige/runtime => backend}/.gitignore | 0 {slige/runtime => backend}/Makefile | 0 {slige/runtime => backend}/compile_flags.txt | 0 {slige/runtime => backend}/prepare.sql | 0 {slige/runtime => backend}/src/collection.h | 0 {slige/runtime => backend}/src/http_response_code_string.c | 0 {slige/runtime => backend}/src/http_server.c | 0 {slige/runtime => backend}/src/http_server.h | 0 {slige/runtime => backend}/src/http_server_internal.h | 0 {slige/runtime => backend}/src/json.c | 0 {slige/runtime => backend}/src/json.h | 0 {slige/runtime => backend}/src/main.c | 0 {slige/runtime => backend}/src/str_util.c | 0 {slige/runtime => backend}/src/str_util.h | 0 {slige/runtime => backend}/src/util.h | 0 {slige/runtime => backend}/src/vm.c | 0 {slige/runtime => backend}/src/vm.h | 0 18 files changed, 0 insertions(+), 0 deletions(-) rename {slige/runtime => backend}/.clang-format (100%) rename {slige/runtime => backend}/.gitignore (100%) rename {slige/runtime => backend}/Makefile (100%) rename {slige/runtime => backend}/compile_flags.txt (100%) rename {slige/runtime => backend}/prepare.sql (100%) rename {slige/runtime => backend}/src/collection.h (100%) rename {slige/runtime => backend}/src/http_response_code_string.c (100%) rename {slige/runtime => backend}/src/http_server.c (100%) rename {slige/runtime => backend}/src/http_server.h (100%) rename {slige/runtime => backend}/src/http_server_internal.h (100%) rename {slige/runtime => backend}/src/json.c (100%) rename {slige/runtime => backend}/src/json.h (100%) rename {slige/runtime => backend}/src/main.c (100%) rename {slige/runtime => backend}/src/str_util.c (100%) rename {slige/runtime => backend}/src/str_util.h (100%) rename {slige/runtime => backend}/src/util.h (100%) rename {slige/runtime => backend}/src/vm.c (100%) rename {slige/runtime => backend}/src/vm.h (100%) diff --git a/slige/runtime/.clang-format b/backend/.clang-format similarity index 100% rename from slige/runtime/.clang-format rename to backend/.clang-format diff --git a/slige/runtime/.gitignore b/backend/.gitignore similarity index 100% rename from slige/runtime/.gitignore rename to backend/.gitignore diff --git a/slige/runtime/Makefile b/backend/Makefile similarity index 100% rename from slige/runtime/Makefile rename to backend/Makefile diff --git a/slige/runtime/compile_flags.txt b/backend/compile_flags.txt similarity index 100% rename from slige/runtime/compile_flags.txt rename to backend/compile_flags.txt diff --git a/slige/runtime/prepare.sql b/backend/prepare.sql similarity index 100% rename from slige/runtime/prepare.sql rename to backend/prepare.sql diff --git a/slige/runtime/src/collection.h b/backend/src/collection.h similarity index 100% rename from slige/runtime/src/collection.h rename to backend/src/collection.h diff --git a/slige/runtime/src/http_response_code_string.c b/backend/src/http_response_code_string.c similarity index 100% rename from slige/runtime/src/http_response_code_string.c rename to backend/src/http_response_code_string.c diff --git a/slige/runtime/src/http_server.c b/backend/src/http_server.c similarity index 100% rename from slige/runtime/src/http_server.c rename to backend/src/http_server.c diff --git a/slige/runtime/src/http_server.h b/backend/src/http_server.h similarity index 100% rename from slige/runtime/src/http_server.h rename to backend/src/http_server.h diff --git a/slige/runtime/src/http_server_internal.h b/backend/src/http_server_internal.h similarity index 100% rename from slige/runtime/src/http_server_internal.h rename to backend/src/http_server_internal.h diff --git a/slige/runtime/src/json.c b/backend/src/json.c similarity index 100% rename from slige/runtime/src/json.c rename to backend/src/json.c diff --git a/slige/runtime/src/json.h b/backend/src/json.h similarity index 100% rename from slige/runtime/src/json.h rename to backend/src/json.h diff --git a/slige/runtime/src/main.c b/backend/src/main.c similarity index 100% rename from slige/runtime/src/main.c rename to backend/src/main.c diff --git a/slige/runtime/src/str_util.c b/backend/src/str_util.c similarity index 100% rename from slige/runtime/src/str_util.c rename to backend/src/str_util.c diff --git a/slige/runtime/src/str_util.h b/backend/src/str_util.h similarity index 100% rename from slige/runtime/src/str_util.h rename to backend/src/str_util.h diff --git a/slige/runtime/src/util.h b/backend/src/util.h similarity index 100% rename from slige/runtime/src/util.h rename to backend/src/util.h diff --git a/slige/runtime/src/vm.c b/backend/src/vm.c similarity index 100% rename from slige/runtime/src/vm.c rename to backend/src/vm.c diff --git a/slige/runtime/src/vm.h b/backend/src/vm.h similarity index 100% rename from slige/runtime/src/vm.h rename to backend/src/vm.h