const ENV = "prod";

let server_url;

switch (ENV) {
    case "dev":
        server_url = "http://localhost";
        break;
    case "prod":
        server_url = "http://kuadrado-software.fr";
}

module.exports = { server_url };