This commit is contained in:
2020-03-10 06:44:28 -07:00
commit 3ae7b05b9b
15 changed files with 391 additions and 0 deletions

9
bin/tvidd Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
from tvid import serve
def main():
serve()
if __name__ == "__main__":
main()