11 lines
237 B
Go
11 lines
237 B
Go
package common
|
|
|
|
type MobileSessionMessage struct {
|
|
Handler string `json:"handler" validate:"required"`
|
|
Data MobileSessionData `json:"data"`
|
|
}
|
|
|
|
type MobileSessionData struct {
|
|
Token string `json:"token" validate:"jwt"`
|
|
}
|