2022-08-01 19:47:46 +00:00
|
|
|
package models
|
|
|
|
|
2022-08-03 11:17:15 +00:00
|
|
|
// UserInputParams is a struct containing all fields that can be useful for project generation.
|
2022-08-01 19:47:46 +00:00
|
|
|
type UserInputParams struct {
|
2022-08-04 10:39:24 +00:00
|
|
|
DatabaseModels bool
|
2022-08-10 15:40:37 +00:00
|
|
|
GoModulePath *string
|
2022-08-01 21:55:50 +00:00
|
|
|
ProjectDescription string
|
|
|
|
ProjectDirectory string
|
|
|
|
ProjectName string
|
|
|
|
ProjectOwner string
|
2022-08-01 19:47:46 +00:00
|
|
|
}
|