File: __init__.py

package info (click to toggle)
python-redmine 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 520 kB
  • sloc: python: 3,785; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
"""
Defines engines for processing requests/responses to/from Redmine.
"""

from .base import BaseEngine
from .sync import SyncEngine

DefaultEngine = SyncEngine