File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ func ServeInternal(c *Context) {
30
30
31
31
mux .HandleFunc ("/" , func (w http.ResponseWriter , r * http.Request ) {
32
32
w .Header ().Set ("Content-Type" , "text/plain" )
33
- w .Write ([]byte ("auth-store internal API alive and running." ))
33
+ w .Write ([]byte ("auth-store internal API alive and running.\n " ))
34
34
})
35
35
36
36
mux .HandleFunc ("/v1/style" , BindContext (c , StyleHandler ))
@@ -78,7 +78,7 @@ func ServeExternal(c *Context) {
78
78
79
79
mux .HandleFunc ("/" , func (w http.ResponseWriter , r * http.Request ) {
80
80
w .Header ().Set ("Content-Type" , "text/plain" )
81
- w .Write ([]byte ("auth-store external API alive and running." ))
81
+ w .Write ([]byte ("auth-store external API alive and running.\n " ))
82
82
})
83
83
84
84
mux .HandleFunc ("/v1/accounts" , BindContext (c , AccountHandler ))
You can’t perform that action at this time.
0 commit comments