Compare commits

...

1 Commits

Author SHA1 Message Date
3ed98751bc
add AwsProtocol, allowing usage within a build.zig import
All checks were successful
Generic zig build / build (push) Successful in 19s
2024-08-23 11:09:22 -07:00

View File

@ -50,3 +50,7 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&run_main_tests.step);
}
// define AwsProtocol to support usage within build.zig as an import
const smithy = @import("src/smithy.zig");
pub const AwsProtocol = smithy.AwsProtocol;