mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 22:19:01 +00:00
13 lines
147 B
Python
13 lines
147 B
Python
#! /usr/bin/env python3
|
|
|
|
"""
|
|
Maigret entrypoint
|
|
"""
|
|
|
|
import asyncio
|
|
|
|
from .maigret import main
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|