Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:37:58 +08:00
commit f0a4617f0c
38 changed files with 4166 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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
// }
}