aboutsummaryrefslogtreecommitdiff
blob: f1880e4a4fc9f94c0c64599c5548a759c2951bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

'''
Stub plug-in module for layman.
'''

module_spec = {
    'name': 'stub',
    'description': __doc__,
    'provides':{
        'stub-module': {
            'name': 'stub',
            'class': 'StubOverlay',
            'description': __doc__,
            'sourcefile': 'stub',
            'functions': ['add', 'supported', 'sync', 'update'],
            'func_desc': {
                'add': 'Stub add function',
                'supported': 'Stub supported function',
                'sync': 'Stub sync function',
                'update': 'Stub update function',
            },
        }
    }
}