Armin Friedl
4c88eb4121
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
309 B
Python
11 lines
309 B
Python
""" Timezone management
|
|
|
|
Provides:
|
|
- `search.py`: Fast prefix search for timezones
|
|
- `timezone.py`: Conversion functions
|
|
- `api.py`: A REST API for the functionality provided by this package
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
app = Blueprint('timezone', __name__, template_folder='templates')
|
|
from . import api
|