mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-16 16:26:49 +00:00
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)
|