You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create REST URL paths with let path = RestPath("pets", 0). URL has a variant init extension that allows for N RestPath parameters e.g.
let base = "http://localhost:3000"
let url = URL(base: base, RestPath("vets", 0), RestPath("pets"))
print(url.absoluteString) // http://localhost:3000/vets/0/pets