blob: da6e96efa322d21d0a362c7e7f84c45633c37613 [file] [log] [blame]
Adam Israelc3e6c2e2018-03-01 09:31:50 -05001#!/usr/bin/env python3
2# Recreate the conditions in which this will be used in OSM, called via tasks
3import asyncio
4
5if __name__ == "__main__":
6 main()
7
8async def do_something():
9 pass
10
11def main():
12
13 loop = asyncio.get_event_loop()
14 loop.run_until_complete(do_something())
15 loop.close()
16 loop = None