Completed
Push — master ( 8d9de4...6fdc5a )
by Thomas
10:31
created

exabgp.application.run_healthcheck()   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
# encoding: utf-8
2
"""
3
__init__.py
4
5
Created by Thomas Mangin on 2014-12-31.
6
Copyright (c) 2014-2017 Exa Networks. All rights reserved.
7
License: 3-clause BSD. (See the COPYRIGHT file)
8
"""
9
10
11
def main():
12
    from exabgp.application.main import main
13
14
    main()
15
16
17
def run_exabgp():
18
    from exabgp.application.bgp import main
19
20
    main()
21
22
23
def run_exabmp():
24
    from exabgp.application.bmp import main
25
26
    main()
27
28
29
def run_healthcheck():
30
    from exabgp.application.healthcheck import main
31
32
    main()
33
34
35
def run_cli():
36
    from exabgp.application.cli import main
37
38
    main()
39
40
41
def run_control():
42
    from exabgp.application.control import main
43
44
    main()
45