apollo-client 0.3.0

Rust🦀 client for Apollo.
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Once;

static START: Once = Once::new();

pub fn setup() {
    START.call_once(|| {
        env_logger::init();
    });
}