mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -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"`
|
|
}
|