summaryrefslogtreecommitdiff
path: root/cask/src/cask/package.scala
blob: 24a0a20bf0dac566238f7a632873b3946178044e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package object cask {
  // model
  type Response = model.Response
  val Response = model.Response
  type Abort = model.Abort
  val Abort = model.Abort
  type Redirect = model.Redirect
  val Redirect = model.Redirect
  type FormEntry = model.FormEntry
  val FormEntry = model.FormEntry
  type FormValue = model.FormValue
  val FormValue = model.FormValue
  type FormFile = model.FormFile
  val FormFile = model.FormFile
  type Cookie = model.Cookie
  val Cookie = model.Cookie
  type Subpath = model.Subpath
  val Subpath = model.Subpath
  type Request = model.Request
  val Request = model.Request

  // endpoints
  type get = endpoints.get
  type post = endpoints.post
  type put = endpoints.put
  type route = endpoints.route
  type static = endpoints.static
  type postJson = endpoints.postJson
  type postForm = endpoints.postForm

  // main
  type MainRoutes = main.MainRoutes
  type Routes = main.Routes
  val Routes = main.Routes
  type Main = main.Main
  type Decorator = main.Decorator
  type Endpoint[R] = main.Endpoint[R]
  type BaseDecorator = main.BaseDecorator

}