slack-go / slack

Slack API in Go, originally by @nlopes; Maintainers needed, contact @parsley42
https://pkg.go.dev/github.com/slack-go/slack
BSD 2-Clause "Simplified" License
4.69k stars 1.14k forks source link

chore: replace ioutil with io or os package #1310

Closed nakamasato closed 3 months ago

nakamasato commented 3 months ago

why

Deprecated: As of Go 1.16, the same functionality is now provided by package io or package os, and those implementations should be preferred in new code.

Ref: https://pkg.go.dev/io/ioutil

what