We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57c877a commit 06c650eCopy full SHA for 06c650e
.workspace/__init__.py
@@ -0,0 +1,8 @@
1
+from __future__ import annotations
2
+
3
+import importlib.metadata
4
5
+try:
6
+ __version__ = importlib.metadata.version(__name__)
7
+except importlib.metadata.PackageNotFoundError:
8
+ __version__ = "0.0.0"
packages/djls-agent/src/djls_agent/__init__.py
0 commit comments