This commit is contained in:
2024-06-26 14:55:21 +02:00
committed by Flo Greistorfer
parent 8b0a15cec1
commit 623a08d1d4

View File

@@ -29,8 +29,12 @@ def listfolder(folder: str):
def main(): def main():
if not root.endswith("/"):
root += "/"
if not webroot.endswith("/"):
webroot += "/"
listfolder(root) listfolder(root)
# @TODO: write actual html files (and css 🙄)
if __name__ == "__main__": if __name__ == "__main__":
main() main()