mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
13 lines
205 B
C++
13 lines
205 B
C++
#include "sql_adapter.hpp"
|
|
|
|
namespace dbal {
|
|
namespace adapters {
|
|
namespace sql {
|
|
|
|
PostgresAdapter::PostgresAdapter(const SqlConnectionConfig& config)
|
|
: SqlAdapter(config, Dialect::Postgres) {}
|
|
|
|
}
|
|
}
|
|
}
|