mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-02 02:38:30 +02:00
10 lines
286 B
Python
10 lines
286 B
Python
from pathlib import Path
|
|
|
|
|
|
def initialise() -> None:
|
|
"""
|
|
Execute all the scripts in the ./plugins/ directory that don't start with an underscore.
|
|
:return:
|
|
"""
|
|
for file in Path("./plugins/").rglob("[!_]*.py"):
|
|
exec(file.read_text(encoding="utf8"), globals())
|