Blame view

app/controllers/Application.java 241 Bytes
Anandkumar Chandran authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package controllers;

import play.*;
import play.mvc.*;

import views.html.*;

public class Application extends Controller {
  
    public static Result index() {
        return ok(index.render("Your new application is ready."));
    }
  
}