- git repo fetcher service, compatible with registry tbm Signed-off-by: Pakin <pakin.t@forth.co.th>
5 lines
168 B
Rust
5 lines
168 B
Rust
use std::collections::HashMap;
|
|
|
|
// Setup readable types
|
|
pub type Configure = HashMap<String, String>;
|
|
pub type StandardResult = Result<(), Box<dyn std::error::Error>>;
|