fix: Rename freeflowuniverse to incubaid

This commit is contained in:
Mahmoud-Emad
2025-10-12 12:30:19 +03:00
parent 801c4abb43
commit 8f2d187b17
1593 changed files with 8753 additions and 8300 deletions

View File

@@ -43,10 +43,11 @@ Display the recorded timeline:
## Dependencies
Redis: Requires a Redis server for data storage.
Redis Client: Uses freeflowuniverse.herolib.core.redisclient.
Redis: Requires a Redis server for data storage.
Redis Client: Uses incubaid.herolib.core.redisclient.
## Example
```
mut timer := performance.new('example_process')
@@ -61,4 +62,4 @@ timer.epoch_end()
timer.timeline()
```
This will output a detailed timeline with duration bars for each event.
This will output a detailed timeline with duration bars for each event.

View File

@@ -4,7 +4,7 @@ import arrays
import time
import sync
import term // For color coding
import freeflowuniverse.herolib.core.redisclient
import incubaid.herolib.core.redisclient
// Struct to represent a timer for measuring process performance
@[noinit]