Add MPD client implementation

This commit is contained in:
Olli 2026-02-26 10:38:04 +01:00
commit 4a11ea5ad0
4 changed files with 1212 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package client
type listCommand struct {
Action string
Args []string
}
func newListCommand(action string, args ...string) listCommand {
return listCommand{action, args}
}