refactor: restructure core module into domain-driven packages with 2672 insertions and 2220 deletions
Build and run rrex2 / build (push) Failing after 41s
Build and run rrex2 / build (push) Failing after 41s
Splits monolithic core module into bounded contexts: identity, billing, and notification domains. Moves entity definitions, repository interfaces, and service implementations into separate packages. Updates import paths across 25 files to align with new package structure. Removes cross-domain coupling by extracting shared value objects into a common package.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#include "rjson.h"
|
||||
|
||||
int main() {
|
||||
rtest_banner("rjson");
|
||||
rjson_t *json = rjson();
|
||||
rjson_array_start(json);
|
||||
rjson_object_start(json);
|
||||
rjson_kv_string(json, "string", "value");
|
||||
rjson_kv_number(json, "number", 1337421984);
|
||||
rjson_kv_duration(json, "duration", 1337421984);
|
||||
rjson_kv_int(json, "ulonglong", 1337420);
|
||||
rjson_kv_bool(json, "bool", true);
|
||||
rjson_object_close(json);
|
||||
rjson_array_close(json);
|
||||
rassert(!strcmp(json->content, "[{\"string\":\"value\",\"number\":\"1.337.421.984\",\"duration\":\"1."
|
||||
"34s\",\"ulonglong\":1337420,\"bool\":true}]"));
|
||||
rjson_free(json);
|
||||
return rtest_end("");
|
||||
}
|
||||
Reference in New Issue
Block a user