hiroaki-yamamoto/WTF-OTP

View on GitHub
wtf_otp/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
#!/usr/bin/env python
# coding=utf-8

"""WTF-OTP module."""

from .widgets import OTPSecretKeyWidget
from .fields import OTPSecretKeyField
from .validators import OTPCheck

__all__ = ("OTPSecretKeyWidget", "OTPSecretKeyField", "OTPCheck")