~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Martin Pool
  • Date: 2009-01-23 17:53:17 UTC
  • mto: This revision was merged to the branch mainline in revision 298.
  • Revision ID: mbp@sourcefrog.net-20090123175317-zfil1x0wmq9a740k
Stub code to allow loggerhead to load as a plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2009 Canonical Ltd
 
2
 
 
3
# This file allows loggerhead to be treated as a plugin for bzr.
 
4
#
 
5
# XXX: Because loggerhead already contains a loggerhead directory, much of the code
 
6
# is going to live in bzrlib.plugins.loggerhead.loggerhead.  But moving it can
 
7
# wait. -- mbp 20090123
 
8
 
 
9
"""Loggerhead web viewer for Bazaar branches."""
 
10
 
 
11
import bzrlib
 
12
from bzrlib.api import require_api
 
13
 
 
14
require_api(bzrlib, (1, 11, 0))