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
|
Line | |
---|
1 | package controllers; |
---|
2 | |
---|
3 | import play.*; |
---|
4 | import play.mvc.*; |
---|
5 | |
---|
6 | import views.html.*; |
---|
7 | |
---|
8 | public 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.