mirror of
https://github.com/tuna/tunasync.git
synced 2025-12-25 22:02:46 +00:00
14 lines
234 B
Python
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
|