修改启动提示语

This commit is contained in:
keqingmoe 2025-01-04 21:24:23 +08:00
parent 871da1688f
commit 741ce9939b

View File

@ -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);
}