mirror of
https://github.com/RoganDawes/P4wnP1_aloa.git
synced 2025-03-28 18:41:46 +01:00
10 lines
146 B
Go
10 lines
146 B
Go
package cli_client
|
|
|
|
import "time"
|
|
|
|
const (
|
|
TIMEOUT_SHORT = time.Second * 5
|
|
TIMEOUT_MEDIUM = time.Second * 10
|
|
TIMEOUT_LONG = time.Second * 30
|
|
)
|