mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-11 21:59:06 +08:00
10 lines
172 B
Go
10 lines
172 B
Go
package requestBody
|
|
|
|
type Options struct {
|
|
ApnsProduction bool `json:"apns_production,omitempty"`
|
|
}
|
|
|
|
func (o *Options) SetApnsProduction(c bool) {
|
|
o.ApnsProduction = c
|
|
}
|