WorkspaceInfoProvider is an entity that is able to provide workspaces related information.
| 41 | |
| 42 | // WorkspaceInfoProvider is an entity that is able to provide workspaces related information. |
| 43 | type WorkspaceInfoProvider interface { |
| 44 | // WorkspaceInfo returns the workspace information of a workspace using it's workspace ID |
| 45 | WorkspaceInfo(workspaceID string) *WorkspaceInfo |
| 46 | } |
| 47 | |
| 48 | // WorkspaceInfo is all the infos ws-proxy needs to know about a workspace. |
| 49 | type WorkspaceInfo struct { |
no outgoing calls
no test coverage detected