File size: 287 Bytes
ab3c5c9 | 1 2 3 4 5 6 7 8 | # models/__init__.py
# This file is required to make Python treat the directory as a package
# It can be empty or can contain initialization code for the models package
from .pii_masker import PIIMasker
from .classifier import EmailClassifier
__all__ = ['PIIMasker', 'EmailClassifier'] |