Initial commit
This commit is contained in:
17
skills/go-cli-builder/assets/templates/config.go.template
Normal file
17
skills/go-cli-builder/assets/templates/config.go.template
Normal 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
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user