Initial upload: TermDiagram v0.1.0
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-29 22:28:03 +00:00
parent 68a9dc7df2
commit 78dc6fc6f4

View File

@@ -0,0 +1,8 @@
from enum import Enum
class SymbolType(Enum):
MODULE = "module"
CLASS = "class"
FUNCTION = "function"
METHOD = "method"