//! Bridge between *Springtime* and `refinery` migrations.
use automock;
use Migration;
use ErrorPtr;
use injectable;
/// Embed migrations from a given path (`migrations` by default). Path is inspected for `*.sql`
/// files, which are converted into [MigrationSources](MigrationSource).
///
/// ```no_run
/// use springtime_migrate_refinery::migration::embed_migrations;
/// embed_migrations!("examples/migrations");
/// ```
pub use embed_migrations;
/// A source for [Migrations](Migration).