diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-17 13:24:42 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-17 13:24:42 -0800 |
| commit | 96019367e8f72eac26abd3b7a908c2b914bd1ae1 (patch) | |
| tree | fa7dbe66ea8b12bde0970dc8db27f7601464b3b8 /decorators.py | |
| parent | c159e86a3487dbae79de8d0887f288625084bfcd (diff) | |
v2: add initial Next JS files, remove static templates
Diffstat (limited to 'decorators.py')
| -rw-r--r-- | decorators.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/decorators.py b/decorators.py deleted file mode 100644 index bc0b420..0000000 --- a/decorators.py +++ /dev/null @@ -1,16 +0,0 @@ -import time - - -def log(message: str): - def decorator(func): - def wrapper(*args, **kwargs): - print("TASK: " + message) - start = time.time() - result = func(*args, **kwargs) - end = time.time() - print(f"COMPLETE: {message} {round(end - start, 3)} seconds") - return result - - return wrapper - - return decorator |
