mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-16 04:35:49 +00:00
68cab4bd6b
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
6 lines
163 B
Python
6 lines
163 B
Python
import pkgutil
|
|
from pathlib import Path
|
|
|
|
for _, file, _ in pkgutil.iter_modules([str(Path(__file__).parent.absolute())]):
|
|
__import__(file, globals(), level=1)
|