Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. defmodule HealthyskinWeb.Router do
  2. use HealthyskinWeb, :router
  3.  
  4. pipeline :api do
  5. plug :accepts, ["json"]
  6. end
  7.  
  8. scope "/api", HealthyskinWeb do
  9. pipe_through :api
  10.  
  11. post "/subscriptions", SubscriptionController, :create
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement