Documentation
¶
Index ¶
- type GenerateRunbookDoneMsg
- type GenerateRunbookModel
- func (m *GenerateRunbookModel) Generate() tea.Msg
- func (m GenerateRunbookModel) Init() tea.Cmd
- func (m *GenerateRunbookModel) IsDone() bool
- func (m GenerateRunbookModel) RunbookCh() chan *Runbook
- func (m GenerateRunbookModel) Update(msg tea.Msg) (tea.Model, tea.Cmd)
- func (m GenerateRunbookModel) View() string
- type Runbook
- type RunbookStep
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GenerateRunbookDoneMsg ¶
type GenerateRunbookDoneMsg struct { GeneratedRunbook *client.GeneratedRunbook Err error }
type GenerateRunbookModel ¶
func NewGenerateRunbookModel ¶
func NewGenerateRunbookModel( commands []*server.RecordedCommand, cl client.Client, ) GenerateRunbookModel
func (*GenerateRunbookModel) Generate ¶
func (m *GenerateRunbookModel) Generate() tea.Msg
func (GenerateRunbookModel) Init ¶
func (m GenerateRunbookModel) Init() tea.Cmd
func (*GenerateRunbookModel) IsDone ¶ added in v0.4.0
func (m *GenerateRunbookModel) IsDone() bool
func (GenerateRunbookModel) RunbookCh ¶
func (m GenerateRunbookModel) RunbookCh() chan *Runbook
func (GenerateRunbookModel) View ¶
func (m GenerateRunbookModel) View() string
type Runbook ¶
type Runbook struct { Title string Steps []RunbookStep URL string }
func NewRunbook ¶ added in v0.9.5
func NewRunbook(crb *client.GeneratedRunbook) *Runbook
type RunbookStep ¶
Click to show internal directories.
Click to hide internal directories.