8 lines
		
	
	
		
			144 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			144 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package web
 | |
| 
 | |
| import "net/http"
 | |
| 
 | |
| func FallbackHandler(w http.ResponseWriter, r *http.Request) {
 | |
| 	respondWithJSON(w, http.StatusOK, struct{}{})
 | |
| }
 |