mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-24 10:22:36 +08:00
10 lines
162 B
Go
10 lines
162 B
Go
package requestBody
|
|
|
|
type Options struct {
|
|
ApnsProduction bool `json:"apns_production"`
|
|
}
|
|
|
|
func (o *Options) SetApnsProduction(c bool) {
|
|
o.ApnsProduction = c
|
|
}
|