isso/isso/tasks/http.py
2014-07-23 23:18:33 +02:00

13 lines
172 B
Python

# -*- encoding: utf-8 -*-
from . import Task
class Fetch(Task):
def __init__(self, db):
self.db = db
def run(self, data):
raise NotImplemented