mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
12 lines
243 B
Go
12 lines
243 B
Go
package controller
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/railwayapp/cli/entity"
|
|
)
|
|
|
|
// GetStarters returns all available starters
|
|
func (c *Controller) GetStarters(ctx context.Context) ([]*entity.Starter, error) {
|
|
return c.gtwy.GetStarters(ctx)
|
|
}
|