mashin_core 0.1.4

The core of mashin, consumed by the runtime engine
Documentation
1
2
3
4
5
6
7
8
use crate::HttpClient;

use crate::ProgressManager;

pub trait Config: 'static {
	type ProgressManager: ProgressManager;
	type HttpClient: HttpClient;
}