Skip to content
Snippets Groups Projects

Release

8 files
+ 134
88
Compare changes
  • Side-by-side
  • Inline

Files

+ 19
0
package apns
import "github.com/sideshow/apns2"
type ApnsComm struct {
*apns2.Client
topic string
}
func NewApnsComm(cl *apns2.Client, topic string) *ApnsComm {
return &ApnsComm{
Client: cl,
topic: topic,
}
}
func (c *ApnsComm) GetTopic() string {
return c.topic
}
Loading