From 92997d9d9f6052c4e7f8c1a912d33d642ed1bf58 Mon Sep 17 00:00:00 2001 From: Artlef Date: Sat, 15 Nov 2025 16:53:48 +0100 Subject: [PATCH] fix config comment for limit --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 4a822b6..0e2b112 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -14,7 +14,7 @@ type Config struct { DemoDataPath string `toml:"demo_data_path" comment:"The path to the sql file to load for demo data."` JWTKey string `toml:"jwt_key" comment:"The key used to encrypt the generated JWT. Encoded in base64. If empty a random one will be generated on every restart."` ImageFolderPath string `toml:"image_folder_path" default:"img" comment:"Folder where uploaded files will be stored."` - Limit int `toml:"limit" default:"100" comment:"Folder where uploaded files will be stored."` + Limit int `toml:"limit" default:"100" comment:"A single API call will return at most this number of records."` } func defaultConfig() Config {