From 741ce9939b924595e0ef66d7e8eb62f485a23f06 Mon Sep 17 00:00:00 2001 From: keqingmoe Date: Sat, 4 Jan 2025 21:24:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=AF=E5=8A=A8=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E8=AF=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 17f6072..18579f8 100644 --- a/src/main.c +++ b/src/main.c @@ -169,7 +169,7 @@ int main(int argc, char** argv) mg_set_request_handler(ctx, "/api/study/sets", sets_handler, NULL); - printf("Server started on port(s) %s\n", mg_get_option(ctx, "listening_ports")); + printf("Server started on http://127.0.0.1:%s/\n", mg_get_option(ctx, "listening_ports")); getchar(); mg_stop(ctx); }