Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 686 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 686 Bytes

LunarCat

Build Status

An easy to use, poorly tested web framework built on RestEasy, Jetty, Jackson, and Guice.

Installation

<dependency>
  <groupId>com.muchq</groupId>
  <artifactId>LunarCat</artifactId>
  <version>1.0-SNAPSHOT</version>
</dependency>

Use

public class ExampleService {
  public static void main(String[] args) {
    Configuration configuration = Configuration.newBuilder()
        .withBasePackage(ExampleService.class.getPackage())
        .withModules(new ExampleModule())
        .build();
    new Service(configuration).run();
  }