Skip to content
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.

Commit

Permalink
Fix failed merge
Browse files Browse the repository at this point in the history
  • Loading branch information
yanc0 committed May 7, 2017
1 parent ae59106 commit 205644a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions beeping.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func main() {
gin.SetMode("release")

router := gin.New()
router.POST("/check", handlercheck)
router.GET("/", handlerdefault)
router.POST("/check", handlerCheck)
router.GET("/", handlerDefault)

log.Println("[INFO] Listening on", *listen, *port)
router.Run(*listen + ":" + *port)
Expand Down
2 changes: 0 additions & 2 deletions sslcheck/tlscheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ func (c *CheckSSL) CheckVersions(conn net.Conn) {
})
if err == nil {
c.ProtocolVersion = append(c.ProtocolVersion, name)
} else {
log.Println(name, err.Error())
}
}
}

0 comments on commit 205644a

Please sign in to comment.