nirv_engine/protocol/mod.rs
1// Protocol adapter implementations
2pub mod protocol_trait;
3pub mod postgres_protocol;
4pub mod mysql_protocol;
5pub mod sqlite_protocol;
6pub mod sqlserver_protocol;
7
8pub use protocol_trait::*;
9pub use postgres_protocol::*;
10pub use mysql_protocol::*;
11pub use sqlite_protocol::*;
12pub use sqlserver_protocol::*;
13
14// Type aliases for convenience
15pub type PostgreSQLProtocolAdapter = postgres_protocol::PostgresProtocol;
16pub type SqlServerProtocolAdapter = sqlserver_protocol::SqlServerProtocol;