Add MPD client implementation
This commit is contained in:
parent
af4fc2fb64
commit
4a11ea5ad0
4 changed files with 1212 additions and 0 deletions
10
internal/client/command.go
Normal file
10
internal/client/command.go
Normal 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}
|
||||
}
|
||||
Loading…
Reference in a new issue