blob: 6ff59405ad1433d81e75b298311cb7f79b3378c8 [file] [log] [blame] [raw]
/*
Edit this file to call any network services initialization functions you might
use.
The default implementation simply initiates the HTTP implementation.
*/
#include "websockets.h"
/* implemented in the http_service.c file */
void initialize_http_service(void);
void setup_network_services(void) { initialize_http_service(); }