✨ [drust] Añade el germen de Drust
Drust se presenta como una aplicación desarrollada con PageTop para ofrecer un Sistema de Gestión de Contenidos (CMS) para compartir tu mundo.
This commit is contained in:
parent
cde5e40248
commit
0380aade57
8 changed files with 100 additions and 1 deletions
20
drust/src/main.rs
Normal file
20
drust/src/main.rs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
use pagetop::prelude::*;
|
||||
|
||||
struct Drust;
|
||||
|
||||
impl PackageTrait for Drust {
|
||||
fn dependencies(&self) -> Vec<PackageRef> {
|
||||
vec![
|
||||
// Packages.
|
||||
//&pagetop_bootsier::Bootsier,
|
||||
//&pagetop_admin::Admin,
|
||||
//&pagetop_user::User,
|
||||
//&pagetop_node::Node,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
#[pagetop::main]
|
||||
async fn main() -> std::io::Result<()> {
|
||||
Application::prepare(&Drust).run()?.await
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue