playit-gg 0.0.3

Unofficial Rust Wrapper For PlayIt.GG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate playit_gg;
use playit_gg::*;

use colored::*;
use std::process::exit;

fn main() {}

fn error(message: String) {
  println!("{} - {}", "ERROR".red(), message);
  exit(1);
}