Coverage for src / kdbxtool / models / __init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-19 21:22 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-19 21:22 +0000
1"""Data models for KDBX database elements.
3This module provides typed Python classes for representing KDBX database
4contents: entries, groups, and the database itself.
5"""
7from .attachment import Attachment
8from .entry import Entry, HistoryEntry
9from .group import Group
10from .times import Times
12__all__ = [
13 "Attachment",
14 "Entry",
15 "Group",
16 "HistoryEntry",
17 "Times",
18]