error[E0782]: trait objects must include the `dyn` keyword
--> src\main.rs:26:42
|
26 | fn run(config: Config) -> Result<(), Box<Error>> {
| ^^^^^
|
help: add `dyn` keyword before this trait
|
26 | fn run(config: Config) -> Result<(), Box<dyn Error>> {
| +++
Result<(), Box<Error>>
2022/2/24 7:35:00