核心概念

Model

model是bubbletea的核心接口,定义如下:

type Model interface {
    Init() Cmd
    Update(msg Msg) (Model, Cmd)
    View() string
}

Command

参考资料