Rename project to ddns-service
This commit is contained in:
24
src/ddns_service/__init__.py
Normal file
24
src/ddns_service/__init__.py
Normal file
@@ -0,0 +1,24 @@
|
||||
"""
|
||||
DDNS Service - Dynamic DNS update service.
|
||||
|
||||
A daemon that accepts HTTP(S) requests to dynamically update DNS entries.
|
||||
Includes CLI administration tools for user and hostname management.
|
||||
"""
|
||||
|
||||
__version__ = "1.0.0"
|
||||
__author__ = "Thomas Oettli <spacefreak@noop.ch>"
|
||||
|
||||
__all__ = [
|
||||
"app",
|
||||
"cleanup",
|
||||
"cli",
|
||||
"config",
|
||||
"dns",
|
||||
"email",
|
||||
"logging",
|
||||
"main",
|
||||
"models",
|
||||
"ratelimit",
|
||||
"server",
|
||||
"validation"
|
||||
]
|
||||
Reference in New Issue
Block a user