mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-04 21:21:40 +08:00
11 lines
140 B
Go
11 lines
140 B
Go
package response
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Empty struct{}
|
|
|
|
//JSON response
|
|
func (Empty) Write(http.ResponseWriter) error { return nil }
|