base/src/sqwl/cms/config.scala
author Tomas Zeman <tzeman@volny.cz>
Thu, 13 Dec 2018 17:33:35 +0100
changeset 21 1fa630ed9b8a
parent 14 7c4b05467630
child 33 fa0f19a74283
permissions -rw-r--r--
Content: type annotations

package sqwl.cms

import com.wacai.config.annotation.conf

@conf trait config {

  final val http = new {
    val interface = "localhost"
    val port = 8080
    val prefix = "cms"
  }

  final val run = new {
    val mode = "devel"
  }
}