diff --git a/Crystal-API.md b/Crystal-API.md index aef8831..4789fef 100644 --- a/Crystal-API.md +++ b/Crystal-API.md @@ -7,6 +7,7 @@ in the trait. #[async_trait] pub trait Application { fn new() -> Self; + async fn run(&mut self, _: Vec) -> Result<(), Error> { Ok(()) }