mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
7 lines
121 B
Go
7 lines
121 B
Go
package main
|
|
|
|
import "io"
|
|
|
|
type writeNoOpCloser struct{ io.Writer }
|
|
|
|
func (writeNoOpCloser) Close() error { return nil }
|