mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
10 lines
249 B
Python
10 lines
249 B
Python
from metrics.benchmarks.entity import benchmarks
|
|
|
|
@benchmarks.register(
|
|
type_="my_category",
|
|
description="Description of what is being measured"
|
|
)
|
|
def benchmark_my_operation() -> None:
|
|
# Code whose performance is being measured
|
|
pass
|