mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
21 lines
278 B
Go
21 lines
278 B
Go
|
|
package conf
|
||
|
|
|
||
|
|
// BerserkerConfig .
|
||
|
|
type BerserkerConfig struct {
|
||
|
|
Keys []*BerserkerKey
|
||
|
|
API []*BerserkerAPI
|
||
|
|
}
|
||
|
|
|
||
|
|
// BerserkerAPI .
|
||
|
|
type BerserkerAPI struct {
|
||
|
|
Name string
|
||
|
|
URL string
|
||
|
|
}
|
||
|
|
|
||
|
|
// BerserkerKey .
|
||
|
|
type BerserkerKey struct {
|
||
|
|
Owner string
|
||
|
|
AppKey string
|
||
|
|
Secret string
|
||
|
|
}
|