aboutsummaryrefslogtreecommitdiff
path: root/stage2/License.scala
blob: 7100f552eeb41672bb1c603a2e63a8bd4ba92f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
package cbt
import java.net.URL
case class License(name: String, url: URL)
object License{
  object Apache2 extends License(
    "Apache-2.0",
    new URL(s"http://www.apache.org/licenses/LICENSE-2.0")
  )
}