diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-09-24 22:23:08 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-09-24 22:23:08 +0100 |
commit | 23273e16cb1dc873cfa62782e507df5e64cb6beb (patch) | |
tree | 4f5f7b5ba954a84a9123de5bf677e8fd05870fb1 /src/main.zig | |
parent | 24439a295ca80a3b9a9e65d8b3436859d4ada46a (diff) | |
download | pgz-23273e16cb1dc873cfa62782e507df5e64cb6beb.tar.gz pgz-23273e16cb1dc873cfa62782e507df5e64cb6beb.tar.bz2 pgz-23273e16cb1dc873cfa62782e507df5e64cb6beb.tar.xz pgz-23273e16cb1dc873cfa62782e507df5e64cb6beb.zip |
Add command complete message
Diffstat (limited to 'src/main.zig')
-rw-r--r-- | src/main.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index 8c2aed9..4186377 100644 --- a/src/main.zig +++ b/src/main.zig @@ -10,6 +10,7 @@ const BackendKeyData = @import("backend_key_data.zig"); const Query = @import("query.zig"); const DataRow = @import("data_row.zig"); const RowDescription = @import("row_description.zig"); +const CommandComplete = @import("command_complete.zig"); const Conn = @import("conn.zig"); pub const ProtocolError = error{ @@ -127,4 +128,5 @@ test { _ = Query; _ = DataRow; _ = RowDescription; + _ = CommandComplete; } |