Guest User

Untitled

a guest
Oct 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. defmodule PhoenixReactChat.Router do .
  2. use PhoenixReactChat.Web, :router
  3.  
  4. pipeline :api do
  5. plug :accepts, ["json"]
  6. end
  7.  
  8. scope "/api", PhoenixReactChat do
  9. pipe_through :api
  10. end
  11. end
Add Comment
Please, Sign In to add comment