jsonrtc.c 182 B

1234567891011
  1. #include <kore/kore.h>
  2. #include <kore/http.h>
  3. int page(struct http_request *);
  4. int
  5. page(struct http_request *req)
  6. {
  7. http_response(req, 200, NULL, 0);
  8. return (KORE_RESULT_OK);
  9. }