mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 15:48:07 -05:00
14 lines
218 B
Go
14 lines
218 B
Go
package conf
|
|
|
|
import (
|
|
xtime "go-common/library/time"
|
|
)
|
|
|
|
// JPushConfig 极光推送配置
|
|
type JPushConfig struct {
|
|
AppKey string
|
|
SecretKey string
|
|
Timeout xtime.Duration
|
|
ApnsProduction bool
|
|
}
|