| 24 | var ErrSessionNotFound = errors.New("session not found") |
| 25 | |
| 26 | type KAgentSessionService struct { |
| 27 | BaseURL string |
| 28 | Client *http.Client |
| 29 | } |
| 30 | |
| 31 | // NewKAgentSessionService creates a new KAgentSessionService. |
| 32 | // If client is nil, http.DefaultClient is used. |
nothing calls this directly
no outgoing calls
no test coverage detected