missing ret val

This commit is contained in:
Simon Schmidt 2021-06-30 09:34:11 +02:00
parent 5d32392844
commit 633b99f818

View File

@ -1,5 +1,6 @@
#include "httpserver.h"
bool HTTPServer::start() {
if(!mount_fs()) {
logf("cant mount filesystem, EXIT !\n\r");
@ -39,4 +40,5 @@ bool HTTPServer::start() {
this->begin();
Serial.printf("[HTTPServer] Server active on Port 80 !\n\r");
return true;
}