Skip to content

Commit ec06848

Browse files
committed
Adjustments.
1 parent a3235b9 commit ec06848

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkg/action/action.flags.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ func NewFlagsGroup(name string) *FlagsGroup {
2525
}
2626
}
2727

28+
// GetName returns the name of the flags group.
29+
// Deprecated: use Name().
30+
func (p *FlagsGroup) GetName() string {
31+
return p.Name()
32+
}
33+
2834
// Name returns the name of the flags group.
2935
func (p *FlagsGroup) Name() string {
3036
return p.name

0 commit comments

Comments
 (0)