source: Dev/branches/play+dojo/app/controllers/Application.java @ 322

Last change on this file since 322 was 322, checked in by hendrikvanantwerpen, 13 years ago

Added Play! framework and application with Jena dependency. Working on
the basic things now (login/register), after that start implementing
our data model.

File size: 232 bytes
RevLine 
[322]1package controllers;
2
3import play.*;
4import play.mvc.*;
5
6import views.html.*;
7
8public class Application extends Controller {
9 
10  public static Result index() {
11    return ok(index.render("Your new application is ready."));
12  }
13 
14}
Note: See TracBrowser for help on using the repository browser.