Fully working version (?)

This commit is contained in:
mez 2024-03-24 17:26:33 +00:00
parent 4176cb113f
commit 9fe7dad24f
10 changed files with 474 additions and 196 deletions

View file

@ -3,6 +3,7 @@ import sys
import backlog
import library
import sublibrary
import history
try:
if sys.argv[1] == "local":
@ -17,7 +18,9 @@ if __name__ == "__main__":
backlog.backlog(True)
library.library(True)
sublibrary.sublibrary(True)
history.history(True)
else:
backlog.backlog()
library.library()
sublibrary.sublibrary()
history.history()