feat: add request timeout

This commit is contained in:
2025-07-24 22:21:11 +02:00
parent 723aae48ce
commit 2abebfd01b
3 changed files with 11 additions and 4 deletions

View File

@ -1,8 +1,11 @@
package cmd
const DefaultRequestTimeout uint = 30
type AppConfig struct {
OutputVerbose bool
OutputFormatter string
OutputOrderReverse bool
PrintConfig bool
OutputVerbose bool
OutputFormatter string
OutputOrderReverse bool
PrintConfig bool
RequestTimeoutSeconds uint
}