()
| 19 | const DefaultTsunamiSdkVersion = "v0.12.4" |
| 20 | |
| 21 | func GetTsunamiScaffoldPath() string { |
| 22 | settings := wconfig.GetWatcher().GetFullConfig().Settings |
| 23 | scaffoldPath := settings.TsunamiScaffoldPath |
| 24 | if scaffoldPath == "" { |
| 25 | scaffoldPath = filepath.Join(wavebase.GetWaveAppResourcesPath(), "tsunamiscaffold") |
| 26 | } |
| 27 | return scaffoldPath |
| 28 | } |
| 29 | |
| 30 | func ResolveGoFmtPath() (string, error) { |
| 31 | settings := wconfig.GetWatcher().GetFullConfig().Settings |
no test coverage detected