mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
10 lines
161 B
Go
10 lines
161 B
Go
package base
|
|
|
|
// Result present a handle result
|
|
type Result struct {
|
|
// 200 - ok; 300 -error
|
|
Code int
|
|
Msg string
|
|
Data interface{} `json:"Data,omitempty"`
|
|
}
|