| 242 | } |
| 243 | |
| 244 | pub struct ApiClient { |
| 245 | client: Client, |
| 246 | base_url: String, |
| 247 | pub current_session: Arc<RwLock<Option<SessionInfo>>>, |
| 248 | } |
| 249 | |
| 250 | impl ApiClient { |
| 251 | pub fn new(base_url: String) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected