suresh
07/27/2025, 10:29 PMnative/app
product type? This will make the project structure a lot simpler for small cli apps
├── jvm-cli
│ └── module.yaml
├── linux-cli
│ └── module.yaml
├── macos-cli
│ └── module.yaml
├── project.yaml
├── shared
│ ├── module.yaml
│ ├── src
│ ├── src@jvm
│ ├── src@linux
│ ├── src@macos
│ ├── src@mingw
│ └── test
└── windows-cli
└── module.yaml
joffrey
07/28/2025, 8:56 AM