10 lines
111 B
Plaintext
10 lines
111 B
Plaintext
|
#!/usr/bin/env python3
|
||
|
|
||
|
from tvid import serve
|
||
|
|
||
|
def main():
|
||
|
serve()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|