public static async Task <CompilerResult> CallServiceAsync(string path, bool reattempt = false) { await Up(); if (_server != null) { return(await _server.CallService(path, reattempt)); } else { return(CompilerResult.GenerateResult(path, "", "", false, "Unable to start node", "", null, false)); } }
public static async Task <CompilerResult> CallServiceAsync(string path, bool reattempt = false) { await Up(); return(await _server.CallService(path, reattempt)); }