mirror of
https://github.com/rancher/norman.git
synced 2025-06-27 15:57:00 +00:00
8 lines
153 B
Go
8 lines
153 B
Go
|
package api
|
||
|
|
||
|
import "github.com/rancher/norman/types"
|
||
|
|
||
|
type ResponseWriter interface {
|
||
|
Write(apiContext *types.APIContext, code int, obj interface{})
|
||
|
}
|