Add graphs

This commit is contained in:
2021-05-10 22:12:22 +02:00
parent 0cfd95ad59
commit 45e413eb0b
2 changed files with 69 additions and 0 deletions
+2
View File
@@ -18,6 +18,8 @@ def processContent(content):
result = Hasse.processFileContent(content, template.read())
elif contentType == 'FSA':
result = FSA.processFileContent(content, template.read())
elif contentType == 'Graph':
result = Graph.processFileContent(content, template.read())
elif contentType == 'Truthtable':
result = Truthtable.processFileContent(content, template.read())
else: