14 lines
327 B
Python
14 lines
327 B
Python
"""
|
|
LDAP Docker Management Scripts
|
|
|
|
This package contains management and utility scripts for the LDAP Docker
|
|
development environment.
|
|
|
|
Modules:
|
|
- cli: Command-line interface for managing LDAP server
|
|
- generate_certs: SSL/TLS certificate generation utility
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__all__ = ["cli", "generate_certs"]
|