Source code for swh.lister.cran
# Copyright (C) 2019-2021 the Software Heritage developers
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
[docs]
def register():
from .lister import CRANLister
return {
"lister": CRANLister,
"task_modules": ["%s.tasks" % __name__],
}