(string message, string ticker, string price, string file)
| 456 | } |
| 457 | |
| 458 | private async Task SendWebhookAndWriteToFile(string message, string ticker, string price, string file) |
| 459 | { |
| 460 | var sendWebhookTask = SendWebhook(message, ticker, price); |
| 461 | //var writeToTextFileTask = WriteToTextFile(file); |
| 462 | |
| 463 | await Task.WhenAll(sendWebhookTask); |
| 464 | } |
| 465 | |
| 466 | private void play(String s) |
| 467 | { |
nothing calls this directly
no outgoing calls
no test coverage detected