mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 13:36:20 +00:00
12 lines
153 B
Go
12 lines
153 B
Go
package server
|
|
|
|
func composeResponse(data interface{}) interface{} {
|
|
type R struct {
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
return R{
|
|
Data: data,
|
|
}
|
|
}
|