mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 10:35:04 +03:00
a18be1ab27
Co-authored-by: Trieu Vu <trieuv@strategicdata.com.au>
17 lines
313 B
Haskell
17 lines
313 B
Haskell
module Command.Call where
|
|
|
|
data Call
|
|
= New String -- project name
|
|
| Start
|
|
| Clean
|
|
| Compile
|
|
| Db [String] -- db args
|
|
| Build
|
|
| Version
|
|
| Telemetry
|
|
| Deps
|
|
| PrintBashCompletionInstruction
|
|
| GenerateBashCompletionScript
|
|
| BashCompletionListCommands [String]
|
|
| Unknown [String] -- all args
|