mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-10 15:21:30 +00:00
13 lines
227 B
Python
13 lines
227 B
Python
import asyncio
|
|
|
|
from __init__ import get_advisory_topic_and_fixes
|
|
|
|
|
|
async def main():
|
|
advisory = await get_advisory_topic_and_fixes("RHSA-2023:0536")
|
|
print(advisory)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|