Added the clone command in SSM
This commit is contained in:
parent
ee6011bc3e
commit
306640abdb
9 changed files with 102 additions and 10 deletions
|
|
@ -10,6 +10,12 @@ func Error(err error) tea.Msg {
|
|||
return ErrorMsg(err)
|
||||
}
|
||||
|
||||
func SetError(err error) tea.Cmd {
|
||||
return func() tea.Msg {
|
||||
return Error(err)
|
||||
}
|
||||
}
|
||||
|
||||
func SetStatus(msg string) tea.Cmd {
|
||||
return func() tea.Msg {
|
||||
return StatusMsg(msg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue