mirror of
https://github.com/fankes/beszel.git
synced 2025-10-18 17:29:28 +08: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
|
|
}
|