parallel init of boards

This commit is contained in:
Paolo Asperti 2021-09-30 23:12:11 +02:00
parent 6072bdaa53
commit 48b19fbfd7
Signed by: paspo
GPG Key ID: 06D46905D19D5182
1 changed files with 1 additions and 1 deletions

View File

@ -57,6 +57,6 @@ func InitBoards() {
var b board.Board
for i := range boards {
b = *boards[i]
b.Initialize()
go b.Initialize()
}
}