blob: da6e96efa322d21d0a362c7e7f84c45633c37613 [file] [log] [blame]
#!/usr/bin/env python3
# Recreate the conditions in which this will be used in OSM, called via tasks
import asyncio
if __name__ == "__main__":
main()
async def do_something():
pass
def main():
loop = asyncio.get_event_loop()
loop.run_until_complete(do_something())
loop.close()
loop = None