Update project url in http root response

This commit is contained in:
SeanOMik 2023-09-16 22:34:34 -04:00
parent d4a64fc8b9
commit 5f47aff952
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
1 changed files with 2 additions and 2 deletions

View File

@ -169,9 +169,9 @@ void handle_http_root() {
log_request();
static size_t const BUFSIZE = 256;
static char const *response_template =
"Prometheus ESP8266 DHT Exporter by HON95.\n"
"Prometheus ESP8266 DHT and SGP30 Exporter by SeanOMik.\n"
"\n"
"Project: https://github.com/HON95/prometheus-esp8266-dht-exporter\n"
"Project: https://github.com/seanomik/prometheus-esp8266-dht-exporter\n"
"\n"
"Usage: %s\n";
char response[BUFSIZE];