Add libraries

This commit is contained in:
2025-05-05 22:17:47 +12:00
parent 29d7a5bcfc
commit dc691b522b
9 changed files with 1984 additions and 0 deletions

8
lib/microdot/helpers.py Normal file
View File

@@ -0,0 +1,8 @@
try:
from functools import wraps
except ImportError: # pragma: no cover
# MicroPython does not currently implement functools.wraps
def wraps(wrapped):
def _(wrapper):
return wrapper
return _