mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 15:48:07 -05:00
9 lines
175 B
Go
9 lines
175 B
Go
|
|
package web
|
||
|
|
|
||
|
|
// Params .
|
||
|
|
type Params struct {
|
||
|
|
Route string `form:"route" validate:"required"`
|
||
|
|
Mode string `form:"mode" validate:"required"`
|
||
|
|
JobID string `form:"job_id"`
|
||
|
|
}
|