Native PostgreSQL driver / client for Zig
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix Stream import (#50)

authored by

bobf and committed by
GitHub
(Nov 6, 2024, 10:00 AM +0800) 9226a0a2 04ec26d3

+1 -1
+1 -1
src/lib.zig
··· 14 14 pub const Conn = @import("conn.zig").Conn; 15 15 pub const Stmt = @import("stmt.zig").Stmt; 16 16 pub const Pool = @import("pool.zig").Pool; 17 - pub const Stream = @import("Stream.zig").Stream; 17 + pub const Stream = @import("stream.zig").Stream; 18 18 pub const metrics = @import("metrics.zig"); 19 19 pub const has_openssl = @import("config").openssl; 20 20 pub const SSLCtx = if (has_openssl) openssl.SSL_CTX else void;