blob: 43b3598ee59fffd0623f323c65c68ed1152809a1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
const std = @import("std");
const testing = std.testing;
const git = @import("git.zig");
pub const Git = git;
pub const Repository = git.Repository;
test {
std.testing.refAllDecls(@This());
}
|