callback hooks for repo events

This commit is contained in:
Mike Bonnet 2009-11-09 17:46:28 -05:00
parent 7d85a79fab
commit 6bc83b6d93
2 changed files with 12 additions and 2 deletions

View file

@ -44,7 +44,11 @@ callbacks = {
'preTag': [],
'postTag': [],
'preUntag': [],
'postUntag': []
'postUntag': [],
'preRepoInit': [],
'postRepoInit': [],
'preRepoDone': [],
'postRepoDone': []
}
class PluginTracker(object):