Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notifications-bot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
archives
notifications-bot
Merge requests
!12
Release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Release
release
into
master
Overview
0
Commits
31
Pipelines
0
Changes
8
Merged
Release
Sydney Anne Erickson
requested to merge
release
into
master
Oct 19, 2021
Overview
0
Commits
31
Pipelines
0
Changes
8
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a7cf8dc4
31 commits,
Oct 19, 2021
8 files
+
134
−
88
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
notifications/apns/apns.go
0 → 100644
+
19
−
0
View file @ a7cf8dc4
Edit in single-file editor
Open in Web IDE
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