initial commit

This commit is contained in:
Franzi 2021-11-26 19:45:23 +01:00
commit 35a1d52840
Signed by: kunsi
GPG key ID: 12E3D2136B818350
20 changed files with 238 additions and 0 deletions

7
groups.py Normal file
View file

@ -0,0 +1,7 @@
from os.path import join
from pathlib import Path
groups = {}
for group in Path(join(repo_path, "groups")).rglob("*.py"):
with open(group, 'r') as f:
exec(f.read())