mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
9 lines
284 B
Go
9 lines
284 B
Go
package model
|
|
|
|
// StreamForwardingConfResponse 转推白名单返回结构
|
|
type StreamForwardingConfResponse struct {
|
|
Global []string `json:"global,omitempty"`
|
|
Address map[string]string `json:"address,omitempty"`
|
|
List map[string][]string `json:"list,omitempty"`
|
|
}
|