13 lines
302 B
Plaintext
13 lines
302 B
Plaintext
package cmd
|
|
|
|
// Application constants and defaults
|
|
const (
|
|
// DefaultDatabasePath is the default database file path
|
|
DefaultDatabasePath = "{{PROJECT_NAME}}.db"
|
|
|
|
// DefaultConcurrency is the default number of concurrent operations
|
|
DefaultConcurrency = 10
|
|
|
|
// Add other application constants here
|
|
)
|