mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-11 14:30:50 +01:00
10 lines
246 B
Scala
10 lines
246 B
Scala
package views
|
|
|
|
import models.User
|
|
|
|
package object html {
|
|
type SortedMap[A, B] = scala.collection.SortedMap[A, B]
|
|
type UserAwareRequest[T] = controllers.AuthenticatedController#UserAwareRequest[T]
|
|
type DefaultRequest = UserAwareRequest[_]
|
|
}
|