Spaces:
Build error
Build error
| # SPDX-FileCopyrightText: 2026 Team Centurions | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| from __future__ import annotations | |
| from pageparse.store import Store | |
| def main() -> None: | |
| store = Store() | |
| store.init_db() | |
| print("Database initialised at", store.db_path) | |
| if __name__ == "__main__": | |
| main() | |