zig-pay/src/exchange/main.zig
2025-08-07 21:41:44 -03:00

8 lines
262 B
Zig

const std = @import("std");
pub const ExchangeConnection = @import("exchange_connection.zig").ExchangeConnection;
pub const PaymentSummaryExchange = @import("payment_summary_exchange.zig").PaymentSummaryExchange;
test {
std.testing.refAllDecls(@This());
}