github.com/pojntfx/hydrapp/hydrapp@v0.0.0-20240516002902-d08759d6ca9f/pkg/generators/data.go (about) 1 package generators 2 3 type GoModData struct { 4 GoMod string 5 } 6 7 type GoMainData struct { 8 GoMod string 9 } 10 11 type AndroidData struct { 12 GoMod string 13 JNIExport string 14 } 15 16 type AppTSXData struct { 17 AppName string 18 } 19 20 type IndexHTMLData struct { 21 AppName string 22 } 23 24 type PackageJSONData struct { 25 AppID string 26 AppDescription string 27 ReleaseAuthor string 28 ReleaseEmail string 29 LicenseSPDX string 30 } 31 32 type HydrappYAMLData struct { 33 AppID string 34 } 35 36 type ProjectTypeOption struct { 37 Name string 38 Description string 39 } 40 41 type CodeOfConductMDData struct { 42 ReleaseEmail string 43 } 44 45 type ReadmeMDData struct { 46 AppName string 47 AppSummary string 48 AppGitWeb string 49 AppDescription string 50 AppBaseURL string 51 AppGit string 52 CurrentYear string 53 ReleaseAuthor string 54 LicenseSPDX string 55 Dir string 56 }