Support integer config values

This commit is contained in:
Philipp Wolfer 2024-01-13 14:11:58 +01:00
parent 8c459f4d2f
commit 97e93553a1
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
3 changed files with 37 additions and 0 deletions

View file

@ -21,6 +21,7 @@ const (
Bool OptionType = "bool"
Secret OptionType = "secret"
String OptionType = "string"
Int OptionType = "int"
)
type BackendOption struct {