element.version === currentVersion)) { versionNodes.unshift({ version: currentVersion, url: "#" }); } document.querySelector("#project-version").innerHTML = versionNodes.reduce( (acc, element) => { const status = currentVersion === element.version ? "selected disabled" : ""; return ` ${acc} `; }, `
slack_webhook_client · v1.0.2

slack_webhook_client

Minimal Gleam client for posting data to a Slack incoming webhook

Package Version Hex Docs

gleam add slack_webhook_client@1
import slack_webhook_client/operations.{post_webhook_request}

pub fn main() -> Nil {
  post_webhook_request(...)
  |> http()
}

Further documentation can be found at https://hexdocs.pm/slack_webhook_client.

Development

gleam run   # Run the project
gleam test  # Run the tests
Search Document