usecrate::{postgres::{PostgresClient, PostgresError},schema::v1_0_0::apply_v1_0_0_schema,};modv1_0_0;/// Applies the database schema to the database.
pub async fnapply_schema(client:&PostgresClient)->Result<(), PostgresError>{apply_v1_0_0_schema(client).await
}