mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2024-12-15 09:44:47 +02:00
19 lines
382 B
Go
19 lines
382 B
Go
package constants
|
|
|
|
const TEXT_HELP = `
|
|
Need fill settings in settings.txt file
|
|
`
|
|
|
|
//const FolderTemplates string = "templates"
|
|
//
|
|
//const FolderReady string = "ready"
|
|
|
|
const FILE_PERMISSIONS = 0666
|
|
|
|
const CONFIG_FOLDER_NAME = "configs_"
|
|
|
|
const TemplateFilenameCrudGo = "crud.go_"
|
|
const TemplateFilenameCrudGoTest = "crud_test.go_"
|
|
|
|
const SETTINGS_FOLDER_NAME = "templates/configs_"
|