facti-api 0.2.0

Provides tools for interacting with Factorio REST APIs
1
2
3
4
5
6
7
8
9
10
11
//! Blocking client API.
//!
//! # Optional
//!
//! This requires the optional `blocking` feature to be enabled.

mod client;
mod error;
mod reqwest;

pub use client::{ApiClient, ApiClientBuilder};