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
!7
Jonah/alt apns
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Jonah/alt apns
jonah/alt-apns
into
release
Overview
0
Commits
5
Pipelines
0
Changes
7
Merged
Jonah/alt apns
Jonah Husson
requested to merge
jonah/alt-apns
into
release
Sep 17, 2021
Overview
0
Commits
5
Pipelines
0
Changes
7
0
0
Merge request reports
Compare
release
version 2
1f00926a
Sep 17, 2021
version 1
3b7a56cb
Sep 17, 2021
release (base)
and
latest version
latest version
6d19061b
5 commits,
Sep 24, 2021
version 2
1f00926a
4 commits,
Sep 17, 2021
version 1
3b7a56cb
3 commits,
Sep 17, 2021
7 files
+
82
−
64
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
notifications/apns/apns.go
0 → 100644
+
19
−
0
View file @ 6d19061b
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