8 lines
92 B
Go
8 lines
92 B
Go
package controller
|
|
|
|
type RespBase struct {
|
|
Msg string
|
|
Status int
|
|
Data interface{}
|
|
}
|