Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
API
Merge requests
!2
Add endpoint for apps which throw errors
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Add endpoint for apps which throw errors
rahix/shame
into
main
Overview
4
Commits
4
Pipelines
0
Changes
3
Merged
Add endpoint for apps which throw errors
rahix
requested to merge
rahix/shame
into
main
Aug 18, 2023
Overview
4
Commits
4
Pipelines
0
Changes
3
@q3k
, can you take a quick look at this and deploy it pretty please? :)
1
0
Merge request reports
Compare
main
version 3
57ac8217
Aug 18, 2023
version 2
1d7b9b97
Aug 18, 2023
version 1
b1ee054a
Aug 18, 2023
main (base)
and
latest version
latest version
cd1f4c2c
4 commits,
Aug 18, 2023
version 3
57ac8217
4 commits,
Aug 18, 2023
version 2
1d7b9b97
3 commits,
Aug 18, 2023
version 1
b1ee054a
2 commits,
Aug 18, 2023
3 files
+
108
−
17
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
main.go
+
1
−
0
View file @ cd1f4c2c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -33,6 +33,7 @@ func main() {
@@ -33,6 +33,7 @@ func main() {
http
.
HandleFunc
(
"/api/release/"
,
s
.
handleReleaseMirror
)
http
.
HandleFunc
(
"/api/release/"
,
s
.
handleReleaseMirror
)
http
.
HandleFunc
(
"/api/apps/zip/"
,
s
.
handleAppZip
)
http
.
HandleFunc
(
"/api/apps/zip/"
,
s
.
handleAppZip
)
http
.
HandleFunc
(
"/api/apps/tar/"
,
s
.
handleAppTargz
)
http
.
HandleFunc
(
"/api/apps/tar/"
,
s
.
handleAppTargz
)
http
.
HandleFunc
(
"/api/apps/shame.json"
,
s
.
handleAppShame
)
http
.
HandleFunc
(
"/api/apps/"
,
s
.
handleApp
)
http
.
HandleFunc
(
"/api/apps/"
,
s
.
handleApp
)
log
.
Printf
(
"Listening on %s..."
,
flagListen
)
log
.
Printf
(
"Listening on %s..."
,
flagListen
)
http
.
ListenAndServe
(
flagListen
,
nil
)
http
.
ListenAndServe
(
flagListen
,
nil
)
Loading