Passed
Push — master ( 0347a5...cbb462 )
by Korotkov
02:24 queued 01:31
created

main.exec   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
dl 0
loc 2
c 0
b 0
f 0
rs 10
nop 1
1
/**
2
 * @author  : Jagepard <[email protected]>
3
 * @license https://mit-license.org/ MIT
4
 */
5
6
package main
7
8
// HandlerInterface is ...
9
type HandlerInterface interface {
10
	execute()
11
	setNext(HandlerInterface)
12
}
13