mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
fmt: fix and simplify align of struct fields (#21995)
This commit is contained in:
parent
576a0abcc7
commit
ddb6685d8a
139 changed files with 553 additions and 519 deletions
|
@ -8,7 +8,7 @@ import rand
|
|||
|
||||
pub struct ServerState {
|
||||
mut:
|
||||
ping_interval int = 30 // interval for sending ping to clients (seconds)
|
||||
ping_interval int = 30 // interval for sending ping to clients (seconds)
|
||||
state State = .closed // current state of connection
|
||||
pub mut:
|
||||
clients map[string]&ServerClient // clients connected to this server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue