diff --git a/README.md b/README.md index 018bdd0..1fbad6e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ participant Hours as "ServeHours" << Go >> participant Minutes as "ServeMinutes" << Go >> participant Seconds as "ServeSeconds" << Go >> participant Milliseconds as "ServeMilliseconds" << Go >> -participant CurrentTime as "ServeCurrentTime" << Rust >> +participant CurrentTime as "ServeCurrentTime" << NodeJS >> activate FE #hotpink FE -> FE: Load page @@ -60,7 +60,7 @@ deactivate FE | Service | Language | Port | | -- | -- | -- | | Funnel | Python | - | -| ServeCurrentTime | Rust | 50000 | +| ServeCurrentTime | NodeJS | 50000 | | ServeHours | Go | 50001 | | ServeMinutes | Go | 50002 | | ServeSeconds | Go | 50003 | diff --git a/src/funnel/main.py b/src/funnel/main.py index 4c7bf34..663248e 100644 --- a/src/funnel/main.py +++ b/src/funnel/main.py @@ -107,7 +107,7 @@ def run(): t = time.perf_counter() - t - # print(f"RESULT: {hours}:{minutes}:{seconds}:{milliseconds}") + print(f"RESULT: {hours}:{minutes}:{seconds}:{milliseconds}") print(f"T: {t}")