18 lines
319 B
Plaintext
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
|
|
// }
|
|
}
|