code_runner 0.1.0

A Code Runner written in Rust which takes code in any language executes them and then returns output to the method calling
Documentation
{
    "cpp": {
        "lang_ext": ".cpp",
        "default_path": "/usr/bin/g++",
        "command": ["-o", "file_path"],
        "type": 0
    },
    "c": {
        "lang_ext": ".c",
        "default_path": "/usr/bin/gcc",
        "command": ["-o", "file_path"],
        "type": 0
    },
    "go": {
        "lang_ext": ".go",
        "default_path": "/usr/local/go",
        "command": ["run"],
        "type": 0
    },
    "java": {
        "lang_ext": ".java",
        "default_path": "/usr/bin/javac",
        "command": [""],
        "type": 0
    },
    "rs": {
        "lang_ext": ".rs",
        "default_path": "/usr/bin/rustc",
        "command": [""],
        "type": 0
    },
    "py2": {
        "lang_ext": ".py",
        "default_path": "/usr/bin/python",
        "command": [""],
        "type": 1
    },
    "py3": {
        "lang_ext": ".py",
        "default_path": "/usr/bin/python3",
        "command": [""],
        "type": 1
    }
}