10 lines
141 B
Go
10 lines
141 B
Go
|
package http
|
||
|
|
||
|
type RouteAdd struct {
|
||
|
Magnet string `json:"magnet" binding:"required"`
|
||
|
}
|
||
|
|
||
|
type Error struct {
|
||
|
Error string `json:"error"`
|
||
|
}
|