Files
musicplayer/src/musicplayer/ui/control.gleam
Alexander Heldt 3df1a50e51 wip
2025-11-23 10:41:55 +01:00

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))
}