mirror of
https://github.com/shirayu/whispering.git
synced 2025-01-22 06:38:13 +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()
|