Skip to content

Instantly share code, notes, and snippets.

@galderz
Created February 5, 2013 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galderz/4718488 to your computer and use it in GitHub Desktop.
Save galderz/4718488 to your computer and use it in GitHub Desktop.
import net.liftweb.http.LiftFilter
import org.apache.catalina.core.{StandardContext, ApplicationFilterConfig}
/**
* // TODO: Document this
* @author Galder Zamarreño
* @since // TODO
*/
object Boo {
def main(args: Array[String]) {
val cfg = new ApplicationFilterConfig(new StandardContext(), null)
val filter = new LiftFilter
filter.init(cfg)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment