mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-22 16:40:57 -04:00
5ab3a21e39
Make sure the asn1 code compiles and runs.
10 lines
218 B
Zig
10 lines
218 B
Zig
pub const asn1 = @import("codecs/asn1.zig");
|
|
pub const base64 = @import("codecs/base64_hex_ct.zig").base64;
|
|
pub const hex = @import("codecs/base64_hex_ct.zig").hex;
|
|
|
|
test {
|
|
_ = asn1;
|
|
_ = base64;
|
|
_ = hex;
|
|
}
|