1 2 3 4 5 6
use crate::app::orders::application::create_order::CreateOrder; pub fn create_order() { let command = CreateOrder; let _order = command.handle(); }