1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2024-12-16 21:52:42 +02:00
crud_generator/internal/constants/constants.go

17 lines
331 B
Go
Raw Normal View History

2023-09-28 16:45:44 +02:00
package constants
const TEXT_HELP = `
2023-11-15 12:58:31 +02:00
Need fill settings in settings.txt file
2023-09-28 16:45:44 +02:00
`
2023-09-28 17:08:00 +02:00
2023-11-01 16:34:57 +02:00
//const FolderTemplates string = "templates"
//
//const FolderReady string = "ready"
2023-10-25 13:52:49 +02:00
2023-10-25 15:22:30 +02:00
const FILE_PERMISSIONS = 0666
2023-11-15 12:58:31 +02:00
const CONFIG_FOLDER_NAME = "configs_"
2023-11-16 14:08:10 +02:00
const TemplateFilenameCrudGo = "crud.go_"
2023-11-16 17:07:59 +02:00
const TemplateFilenameCrudGoTest = "crud_test.go_"