mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
8 lines
112 B
Go
8 lines
112 B
Go
|
|
package router
|
||
|
|
|
||
|
|
type dummyWriter struct{}
|
||
|
|
|
||
|
|
func (w dummyWriter) Write(b []byte) (int, error) {
|
||
|
|
return 0, nil
|
||
|
|
}
|