push
github
41 of 213 new or added lines in 6 files covered. (19.25%)
41 of 213 relevant lines covered (19.25%)
2.28 hits per line
1 |
// Code generated by 'go run ./gen'; DO NOT EDIT
|
|
2 |
|
|
3 |
package example
|
|
4 |
|
|
5 |
import "github.com/spf13/cobra" |
|
6 |
|
|
NEW
|
func AddCommandsTo(root *cobra.Command) {
|
× |
NEW
|
day := &cobra.Command{ |
× |
NEW
|
Use: "example",
|
× |
NEW
|
Short: "Problems for Day Example",
|
× |
NEW
|
} |
× |
NEW
|
|
× |
NEW
|
day.AddCommand(aCommand()) |
× |
NEW
|
|
× |
NEW
|
root.AddCommand(day) |
× |
NEW
|
} |
× |