This commit is contained in:
Eden Kirin
2023-03-21 23:09:48 +01:00
parent 3776bdca24
commit 1d26d6625e
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ participant Hours as "ServeHours" << Go >>
participant Minutes as "ServeMinutes" << Go >> participant Minutes as "ServeMinutes" << Go >>
participant Seconds as "ServeSeconds" << Go >> participant Seconds as "ServeSeconds" << Go >>
participant Milliseconds as "ServeMilliseconds" << Go >> participant Milliseconds as "ServeMilliseconds" << Go >>
participant CurrentTime as "ServeCurrentTime" << Rust >> participant CurrentTime as "ServeCurrentTime" << NodeJS >>
activate FE #hotpink activate FE #hotpink
FE -> FE: Load page FE -> FE: Load page
@ -60,7 +60,7 @@ deactivate FE
| Service | Language | Port | | Service | Language | Port |
| -- | -- | -- | | -- | -- | -- |
| Funnel | Python | - | | Funnel | Python | - |
| ServeCurrentTime | Rust | 50000 | | ServeCurrentTime | NodeJS | 50000 |
| ServeHours | Go | 50001 | | ServeHours | Go | 50001 |
| ServeMinutes | Go | 50002 | | ServeMinutes | Go | 50002 |
| ServeSeconds | Go | 50003 | | ServeSeconds | Go | 50003 |

View File

@ -107,7 +107,7 @@ def run():
t = time.perf_counter() - t t = time.perf_counter() - t
# print(f"RESULT: {hours}:{minutes}:{seconds}:{milliseconds}") print(f"RESULT: {hours}:{minutes}:{seconds}:{milliseconds}")
print(f"T: {t}") print(f"T: {t}")