Skip to content

Commit

Permalink
Initial revision
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Foltz authored and Aaron Foltz committed Aug 5, 2011
0 parents commit ac521cd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/spotifyfm/Spotify_fmServlet.java
@@ -0,0 +1,13 @@
package spotifyfm;

import java.io.IOException;
import javax.servlet.http.*;

@SuppressWarnings("serial")
public class Spotify_fmServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
resp.setContentType("text/plain");
resp.getWriter().println("Hello, world");
}
}

0 comments on commit ac521cd

Please sign in to comment.