diff --git a/src/spotifyfm/Spotify_fmServlet.java b/src/spotifyfm/Spotify_fmServlet.java new file mode 100644 index 0000000..9506e99 --- /dev/null +++ b/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"); + } +}