mirror of
https://github.com/XrayR-project/XrayR.git
synced 2025-06-08 13:29:54 +00:00
15 lines
320 B
Go
15 lines
320 B
Go
package gov2panel
|
|
|
|
type user struct {
|
|
Id int `json:"id"`
|
|
Uuid string `json:"uuid"`
|
|
SpeedLimit int `json:"speed_limit"`
|
|
}
|
|
|
|
type route struct {
|
|
Id int `json:"id"`
|
|
Match []string `json:"match"`
|
|
Action string `json:"action"`
|
|
ActionValue string `json:"action_value"`
|
|
}
|