SessionLauncher defines the interface for launching new sessions
| 14 | |
| 15 | // SessionLauncher defines the interface for launching new sessions |
| 16 | type SessionLauncher interface { |
| 17 | Launch(ctx context.Context) (*Session, error) |
| 18 | } |
| 19 | |
| 20 | // Session role constants |
| 21 | const ( |
no outgoing calls
no test coverage detected