Child: [d63c6c] (diff)

Download this file

wiki2markdown_history.py    12 lines (8 with data), 336 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from forgewiki.command.wiki2markdown_base import BaseImportUnit
class HistoryImportUnit(BaseImportUnit):
def __init__(self, options):
self.options = options
def extract(self):
raise NotImplementedError('add here data extraction')
def load(self):
raise NotImplementedError('add here data loading')