File size: 317 Bytes
8c3e275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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()