Initial RAA parser poster copy

This commit is contained in:
Your Name
2026-08-03 16:18:56 +05:00
commit d01890ff2c
148 changed files with 18924 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from __future__ import annotations
import asyncio
from pathlib import Path
from vk_parser_app.db import apply_migrations, close_pool
async def main() -> None:
root = Path(__file__).resolve().parents[1]
await apply_migrations(root / "db" / "migrations")
await close_pool()
if __name__ == "__main__":
asyncio.run(main())