| 14 | CompletionContext, CompletionEngine, CompletionInput, configure_completion, |
| 15 | }; |
| 16 | |
| 17 | /// Authentication type |
| 18 | #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] |
| 19 | pub enum AuthType { |
| 20 | #[default] |
| 21 | None, |
| 22 | Basic, |
| 23 | Bearer, |
| 24 | ApiKey, |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected