add AwsProtocol, allowing usage within a build.zig import
All checks were successful
Generic zig build / build (push) Successful in 19s

This commit is contained in:
Emil Lerch 2024-08-23 11:09:22 -07:00
parent c419359a8c
commit 3ed98751bc
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

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;