| 10 | |
| 11 | #[allow(unused)] |
| 12 | pub struct AppContext { |
| 13 | pub config: Arc<Config>, |
| 14 | pub threadpool: Arc<ThreadPool>, |
| 15 | pub ain_env: Arc<AppEnv>, |
| 16 | pub collection_cache_manager: Arc<CollectionCacheManager>, |
| 17 | } |
| 18 | |
| 19 | impl AppContext { |
| 20 | pub fn new(config: Config, args: CosdataArgs) -> Result<Self, WaCustomError> { |
nothing calls this directly
no outgoing calls
no test coverage detected