clignore 0.1.2

Simple CLI tool to find .gitignore files based on your language or framework
Documentation
1
2
3
4
5
use crate::error_box::ErrorBox;

pub trait Requester {
	fn get_json(&self, url: &str) -> Result<serde_json::Value, ErrorBox>;
}