from __future__ import annotations from .db import run_migrations def main() -> None: run_migrations() if __name__ == "__main__": main()