From 1d26d6625e0c60c5d8ffa5506151cecd5e2c8040 Mon Sep 17 00:00:00 2001 From: Eden Kirin Date: Tue, 21 Mar 2023 23:09:48 +0100 Subject: [PATCH] Readme --- README.md | 4 ++-- src/funnel/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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}")