package websample.crtest;

import org.restlet.Application;
import org.restlet.Restlet;
import org.restlet.routing.Router;

public class RestApp extends Application {

    @Override
    public synchronized Restlet createInboundRoot() {
        Router root = new Router(getContext());
        root.attach("/fetch", Fetch.class);
        return root;
        
    }
    
    

}
