10 lines
192 B
Gleam
10 lines
192 B
Gleam
import gleam/erlang/process.{type Subject}
|
|
|
|
import musicplayer/ui/section.{type Section}
|
|
|
|
pub type Control {
|
|
UpdateState(section: Section, content: String)
|
|
|
|
Exit(reply_to: Subject(Nil))
|
|
}
|