🎨 Retoques en documentación y código

This commit is contained in:
Manuel Cillero 2024-12-07 14:17:57 +01:00
parent 8c6776b364
commit e2f09b3127
4 changed files with 3 additions and 9 deletions

View file

@ -1,4 +1,4 @@
//! Opciones de configuración del paquete. //! Opciones de configuración.
//! //!
//! Example: //! Example:
//! //!

View file

@ -52,7 +52,7 @@
//! } //! }
//! ``` //! ```
use crate::prelude::db::Iden; use crate::db::Iden;
use sea_orm::sea_query::{ use sea_orm::sea_query::{
self, Alias, ColumnDef, ColumnType, Expr, IntoIden, PgInterval, Table, TableCreateStatement, self, Alias, ColumnDef, ColumnType, Expr, IntoIden, PgInterval, Table, TableCreateStatement,
}; };

View file

@ -24,12 +24,6 @@ use std::sync::LazyLock;
pub mod config; pub mod config;
pub mod db; pub mod db;
/// *Prelude* del paquete.
pub mod prelude {
pub use crate::db;
pub use crate::install_migrations;
}
include_locales!(LOCALES_SEAORM); include_locales!(LOCALES_SEAORM);
/// Implementa [`PackageTrait`] y API específica. /// Implementa [`PackageTrait`] y API específica.

View file

@ -1,4 +1,4 @@
//! Opciones globales de configuración de `PageTop`. //! Opciones de configuración globales.
use crate::include_config; use crate::include_config;