Commit ·
f7559d3
1
Parent(s): df08fcd
Fix missing Infallible import in orchestrator
Browse files- src/orchestrator.rs +1 -1
src/orchestrator.rs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
|
|
| 1 |
use crate::shield;
|
| 2 |
-
use crate::inference;
|
| 3 |
use crate::web3;
|
| 4 |
use crate::proof;
|
| 5 |
use anyhow::Result;
|
|
|
|
| 1 |
+
use std::convert::Infallible;
|
| 2 |
use crate::shield;
|
|
|
|
| 3 |
use crate::web3;
|
| 4 |
use crate::proof;
|
| 5 |
use anyhow::Result;
|