Skip to content

Commit

Permalink
feat: ability to import all *Gegevens classes
Browse files Browse the repository at this point in the history
This is mostly so that users can `from mdto.gegevensgroepen import *`,
and have all commonly used classes immediatly available.
  • Loading branch information
rien333 committed Dec 6, 2024
1 parent 26c65e2 commit 75827d0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions mdto/gegevensgroepen.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
from .mdto import (
IdentificatieGegevens,
VerwijzingGegevens,
BegripGegevens,
TermijnGegevens,
ChecksumGegevens,
BeperkingGebruikGegevens,
DekkingInTijdGegevens,
EventGegevens,
RaadpleeglocatieGegevens,
GerelateerdInformatieobjectGegevens,
BetrokkeneGegevens,
Informatieobject,
Bestand,
)

# Expose desired classes
__all__ = [
"IdentificatieGegevens",
"VerwijzingGegevens",
"BegripGegevens",
"TermijnGegevens",
"ChecksumGegevens",
"BeperkingGebruikGegevens",
"DekkingInTijdGegevens",
"EventGegevens",
"RaadpleeglocatieGegevens",
"GerelateerdInformatieobjectGegevens",
"BetrokkeneGegevens",
"Informatieobject",
"Bestand",
]

0 comments on commit 75827d0

Please sign in to comment.