aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/cli.lux
blob: 3b5a33fb122bb1aeadcbed560e5419a82516578e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(.module:
  [lux #*
   [control
    ["<>" parser
     ["." cli (#+ Parser)]]]])

(type: #export Command
  #POM
  #Install
  #Dependencies
  #Buikd)

(def: #export command
  (Parser Command)
  ($_ <>.or
      (cli.this "pom")
      (cli.this "install")
      (cli.this "deps")
      (cli.this "buikd")
      ))