tvid/bin/tvidd

10 lines
111 B
Python

#!/usr/bin/env python3
from tvid import serve
def main():
serve()
if __name__ == "__main__":
main()