12 lines
305 B
Go
12 lines
305 B
Go
package models
|
|
|
|
// UserInputParams is a struct containing all fields that can be useful for project generation.
|
|
type UserInputParams struct {
|
|
DatabaseModels bool
|
|
GoModulePath *string
|
|
ProjectDescription string
|
|
ProjectDirectory string
|
|
ProjectName string
|
|
ProjectOwner string
|
|
}
|