Files
gh-lmorchard-lmorchard-agen…/skills/go-cli-builder/assets/templates/config.go.template
2025-11-30 08:37:58 +08:00

18 lines
319 B
Plaintext

package config
// Config holds application configuration
type Config struct {
// Core settings
Database string
Verbose bool
Debug bool
LogJSON bool
// Add command-specific configuration fields here as needed
// Example:
// Fetch struct {
// Concurrency int
// Timeout time.Duration
// }
}