mirror of
https://github.com/onyx-and-iris/q3rcon.git
synced 2024-11-22 08:30:48 +00:00
left align example snippets
This commit is contained in:
parent
07ffd98e7a
commit
46d3e3fa4a
20
README.md
20
README.md
@ -59,9 +59,9 @@ You may want to change the default timeout if some of your responses are getting
|
|||||||
For example:
|
For example:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
rcon, err := q3rcon.New(
|
rcon, err := q3rcon.New(
|
||||||
host, port, password,
|
host, port, password,
|
||||||
q3rcon.WithDefaultTimeout(50*time.Millisecond))
|
q3rcon.WithDefaultTimeout(50*time.Millisecond))
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `WithTimeouts(timeouts map[string]time.Duration)`
|
#### `WithTimeouts(timeouts map[string]time.Duration)`
|
||||||
@ -69,14 +69,14 @@ For example:
|
|||||||
Perhaps there are some requests that take a long time to receive a response but you want the whole response in one chunk. Pass a timeouts map, for example:
|
Perhaps there are some requests that take a long time to receive a response but you want the whole response in one chunk. Pass a timeouts map, for example:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
timeouts := map[string]time.Duration{
|
timeouts := map[string]time.Duration{
|
||||||
"map_rotate": 1200 * time.Millisecond,
|
"map_rotate": 1200 * time.Millisecond,
|
||||||
"map_restart": 1200 * time.Millisecond,
|
"map_restart": 1200 * time.Millisecond,
|
||||||
}
|
}
|
||||||
|
|
||||||
rcon, err := q3rcon.New(
|
rcon, err := q3rcon.New(
|
||||||
host, port, password,
|
host, port, password,
|
||||||
q3rcon.WithTimeouts(timeouts))
|
q3rcon.WithTimeouts(timeouts))
|
||||||
```
|
```
|
||||||
|
|
||||||
## Command line
|
## Command line
|
||||||
|
Loading…
Reference in New Issue
Block a user