| 6 | use crate::motion; |
| 7 | |
| 8 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] |
| 9 | pub enum ProtocolType { |
| 10 | #[default] |
| 11 | Rest, |
| 12 | WebSocket, |
| 13 | GraphQL, |
| 14 | Sse, |
| 15 | } |
| 16 | |
| 17 | impl ProtocolType { |
nothing calls this directly
no outgoing calls
no test coverage detected