Files
chanbans/chanbans/__main__.py
Alek Ratzloff 54a0488e3c Split up logic into common files
All functions were previously in __main__.py but now they've been split
out to separate modules for better reuse.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2023-06-20 23:22:56 -07:00

7 lines
61 B
Python

import asyncio
from .pull import pull
asyncio.run(pull())