devoyage-subgraph 0.0.15

Subgraph is a CLI that instantly generates a GraphQL API around Mongo, SQL, and HTTP APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::collections::HashMap;

use serde::Deserialize;

pub mod parse_subgraph_config;

#[derive(Deserialize, Debug)]
pub struct Environment {}

impl Environment {
    pub fn new() -> HashMap<String, String> {
        std::env::vars().collect()
    }
}