We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c416e8 commit 81d0cc3Copy full SHA for 81d0cc3
main.go
@@ -6,10 +6,12 @@ import (
6
"github.com/gorilla/mux"
7
)
8
9
+// GetMessages is for MakoAPI connection testing
10
func GetMessages(w http.ResponseWriter, r *http.Request) {
11
w.Write([]byte("Messages!\n"))
12
}
13
14
+// Healthcheck is for CloudWatch testing
15
func Healthcheck(w http.ResponseWriter, r *http.Request) {
16
w.Write([]byte("OK!\n"))
17
0 commit comments