mirror of
https://github.com/henrygd/beszel.git
synced 2025-10-30 01:57:04 +00:00
10 lines
245 B
Go
10 lines
245 B
Go
//go:build testing
|
|
// +build testing
|
|
|
|
package agent
|
|
|
|
// TESTING ONLY: GetConnectionManager is a helper function to get the connection manager for testing.
|
|
func (a *Agent) GetConnectionManager() *ConnectionManager {
|
|
return a.connectionManager
|
|
}
|