zrm/tests/root.zig
Madeorsk f16ad46f8d
Relations and SQL query build improvements.
+ Relations definition.
+ Add test submodels in testing database.
* Generalize raw SQL query preparation and build.
* Simplify and improve SQL query build algorithms.
2024-11-22 15:40:10 +01:00

9 lines
193 B
Zig

const std = @import("std");
comptime {
_ = @import("query.zig");
_ = @import("repository.zig");
_ = @import("composite.zig");
_ = @import("sessions.zig");
_ = @import("relations.zig");
}