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,14 @@
|
||||
#include "rtest.h"
|
||||
#include "rtypes.h"
|
||||
|
||||
int main() {
|
||||
rtest_banner("rtypes");
|
||||
uint test1 = 1000;
|
||||
rassert(test1 == 1000) ulong test2 = -1000;
|
||||
rassert(test2 == -1000);
|
||||
byte test3 = 123;
|
||||
rassert(test3 == 123);
|
||||
byte test4 = 'A';
|
||||
rassert(test4 == 65);
|
||||
return rtest_end("");
|
||||
}
|
||||
Reference in New Issue
Block a user