1
0
Fork 0
mirror of https://github.com/Luzifer/twitch-bot.git synced 2025-01-03 02:06:01 +00:00
twitch-bot/wrNoOpCloser.go

8 lines
121 B
Go
Raw Normal View History

package main
import "io"
type writeNoOpCloser struct{ io.Writer }
func (writeNoOpCloser) Close() error { return nil }