This commit is contained in:
2022-06-15 03:21:04 +03:00
parent e08e110ec1
commit b48ff99558
5 changed files with 127 additions and 29 deletions

View File

@@ -29,3 +29,11 @@ def traps(directory):
if not block:
break
f.write(block)
def main():
get()
if __name__ == '__main__':
main()

View File

@@ -1,4 +1,4 @@
import traps
from traps import main
if __name__ == '__main__':
traps.get()
main()