UserAsset .
(appsFolderPath, themeFolder string)
| 122 | |
| 123 | // UserAsset . |
| 124 | func UserAsset(appsFolderPath, themeFolder string) { |
| 125 | var assetsPath = getAssetsPath(themeFolder) |
| 126 | var xpuiPath = filepath.Join(appsFolderPath, "xpui") |
| 127 | if err := utils.Copy(assetsPath, xpuiPath, true, nil); err != nil { |
| 128 | utils.Fatal(err) |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | func htmlMod(htmlPath string, flags Flag) { |
| 133 | if len(flags.Extension) == 0 && |
no test coverage detected