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
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,15 @@ struct App: VaporHandler {
71
71
}
72
72
```
73
73
74
+
And make sure to update your `Package.swift` with the new package:
75
+
76
+
```swift
77
+
dependencies: [
78
+
.product(name: "Vercel", package: "Vercel"),
79
+
.product(name: "VercelVapor", package: "Vercel")
80
+
]
81
+
```
82
+
74
83
### Data Fetching
75
84
76
85
You can use any popular library to fetch data such as Alamofire or async-http-client but we also provide a convenient `fetch()` method directly in this package:
0 commit comments