All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 3s
18 lines
330 B
Python
18 lines
330 B
Python
"""
|
||
app — mindnet API package
|
||
|
||
Zweck:
|
||
Markiert 'app/' als Python-Paket, damit 'from app.main import create_app'
|
||
in Tests und Skripten funktioniert.
|
||
Kompatibilität:
|
||
Python 3.12+
|
||
Version:
|
||
0.1.0 (Erstanlage)
|
||
Stand:
|
||
2025-10-07
|
||
Hinweise:
|
||
Keine Logik – nur Paketinitialisierung.
|
||
"""
|
||
|
||
__version__ = "0.1.0"
|