sqlm-postgres-macros 0.1.0

macros for `sqlm-postgres`
Documentation
1
2
3
4
5
6
use sqlm_postgres_macros::sql;

#[tokio::main]
async fn main() {
    let _: time::OffsetDateTime = sql!("SELECT NOW()::DATE").await.unwrap();
}