1//! By convention, root.zig is the root source file when making a library. 2const std = @import("std"); 3 4pub const Golomb = @import("Golomb.zig"); 5pub const ZigZag = @import("ZigZag.zig"); 6 7test { 8 std.testing.refAllDecls(@This()); 9}