exports.get = (io)=>
{
    return(req,res)=>
    {
        //IO interaction shit
        res.render('game');
    }
}
exports.getC = (io)=>
{
    return (req,res)=>
    {
        res.render('champion');
    }
}