mirror of
https://github.com/shirayu/whispering.git
synced 2024-11-10 18:51:08 +00:00
14 lines
168 B
Python
14 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()
|