mirror of
https://github.com/shirayu/whispering.git
synced 2024-11-22 17:01:03 +00:00
13 lines
168 B
Python
13 lines
168 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
|
|
def main() -> None:
|
|
data = sys.stdin.read()
|
|
if len(data) != 0:
|
|
sys.exit(1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|