13 lines
193 B
Rust
13 lines
193 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
|
pub enum IpcPacket {
|
|
Quit,
|
|
|
|
Connect(String, String),
|
|
Disconnect,
|
|
|
|
StartPlayback,
|
|
StopPlayback,
|
|
}
|