Mercurial > repos > yating-l > jbrowsearchivecreator
view util/index/ExternIndex.py @ 26:7ec57061a4db draft
Uploaded
| author | yating-l |
|---|---|
| date | Fri, 13 Oct 2017 14:48:17 -0400 |
| parents | 31a41ce128cc |
| children |
line wrap: on
line source
#!/usr/bin/python import collections import abc from abc import ABCMeta class ExternIndex(object): __metaclass__ = ABCMeta @abc.abstractmethod def __init__(self): """init""" @abc.abstractmethod def setExtLink(self): """set external link"""
