Skip to content

muchq/LunarCat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();
  }

Releases

No releases published

Packages

No packages published

Languages