mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-03 12:39:44 +08:00
14 lines
305 B
Go
14 lines
305 B
Go
// Copyright 2022 The Goploy Authors. All rights reserved.
|
|
// Use of this source code is governed by a GPLv3-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package response
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Empty struct{}
|
|
|
|
func (Empty) Write(http.ResponseWriter, *http.Request) error { return nil }
|