mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
0addbe33d8
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)
|