0 | ||| Define operator precedences for the API DSL
 1 | module Pact.API.Operator
 2 |
 3 | -- Operator :/ is used to define a route with a handler function
 4 | public export
 5 | infixr 6 :/
 6 |
 7 | public export
 8 | infixr 5 :>
 9 |
10 | -- Operator :<|> is used to define a route with a handler function
11 | public export
12 | infixr 4 :<|>
13 |
14 | -- Operator :=> is used to define a route with a handler function
15 | public export
16 | infixr 5 :=>