mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2025-02-24 07:27:42 +01:00
12 lines
211 B
Python
12 lines
211 B
Python
|
import logging.config
|
||
|
|
||
|
from mobilizon_reshare.main.recap import recap
|
||
|
|
||
|
logger = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
async def main():
|
||
|
|
||
|
reports = await recap()
|
||
|
return 0 if reports and reports.successful else 1
|