mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 16:11:43 +01:00
10 lines
161 B
Rust
10 lines
161 B
Rust
|
use smol::Task;
|
||
|
|
||
|
pub struct Initiator {
|
||
|
inner: Task<()>,
|
||
|
}
|
||
|
|
||
|
pub fn load(config: &crate::config::Settings) -> Result<Vec<Initiator>> {
|
||
|
unimplemented!()
|
||
|
}
|