Skip to content

Commit e3efb48

Browse files
committed
fix merge conflict
1 parent 36f745b commit e3efb48

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

server/server.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,8 @@ func (s *Server) routes() {
4646
s.mux.Handle("GET /api/quality", handlers.HandleGetQuality())
4747
s.mux.Handle("GET /api/rank", handlers.HandleGetRank(s.checks.Rank))
4848
s.mux.Handle("GET /api/redirects", handlers.HandleGetRedirects())
49-
<<<<<<< HEAD
50-
s.mux.Handle("GET /api/social-tags", handlers.HandleGetSocialTags())
51-
s.mux.Handle("GET /api/tls", handlers.HandleTLS(s.checks.Tls))
52-
=======
5349
s.mux.Handle("GET /api/social-tags", handlers.HandleGetSocialTags(s.checks.SocialTags))
54-
s.mux.Handle("GET /api/tls", handlers.HandleTLS())
55-
>>>>>>> upstream/main
50+
s.mux.Handle("GET /api/tls", handlers.HandleTLS(s.checks.Tls))
5651
s.mux.Handle("GET /api/trace-route", handlers.HandleTraceRoute())
5752
}
5853

0 commit comments

Comments
 (0)