• This project
    • Loading...
  • Sign in

Anandkumar Chandran / ve-agaram

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ve-agaram
  • app
  • controllers
  • Application.java
  • Anandkumar Chandran's avatar
    Initiate VE.AGARAM · 6abd2c5e
    6abd2c5e Browse Directory
    Anandkumar Chandran authored 2013-04-04 14:29:31 +0530
Application.java 241 Bytes
Raw Blame History Permalink
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."));
    }
  
}