mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-10 15:01:45 -04:00
10 lines
170 B
Go
10 lines
170 B
Go
package dashboardexecute
|
|
|
|
type LeafRunOption = func(target *LeafRun)
|
|
|
|
func setName(name string) LeafRunOption {
|
|
return func(target *LeafRun) {
|
|
target.Name = name
|
|
}
|
|
}
|