sqldiff/
lib.rs

1#![allow(unused)]
2
3//
4// Given a OpenAPI spec, a connection to a database, and the schema within that database,
5// - build a diff
6// - Execute SQL
7
8mod schema;
9mod migrate;
10
11pub use migrate::*;
12pub use schema::*;