13 lines
172 B
Python
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
|