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