sabiql 1.6.2

A fast, driver-less TUI for browsing and editing PostgreSQL databases
Documentation
1
2
3
4
5
use crate::domain::connection::ConnectionProfile;

pub trait DsnBuilder: Send + Sync {
    fn build_dsn(&self, profile: &ConnectionProfile) -> String;
}