refactor: use Run(), Start() is deprecated

This commit is contained in:
decentral1se 2023-10-01 09:45:17 +02:00
parent 521d958195
commit da2a6cd2d2
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ func main() {
}()
}
if err := p.Start(); err != nil {
if _, err := p.Run(); err != nil {
log.Fatal(err)
}
}