tunasync/tunasync/hook.py
2014-10-18 11:11:30 +08:00

14 lines
234 B
Python

#!/usr/bin/env python2
# -*- coding:utf-8 -*-
class JobHook(object):
def before_job(self):
raise NotImplementedError("")
def after_job(self):
raise NotImplementedError("")
# vim: ts=4 sw=4 sts=4 expandtab