Refactor for flask

This commit is contained in:
Stephen
2020-06-01 14:31:12 -07:00
parent ef0961402d
commit 182926af1b
252 changed files with 25897 additions and 15 deletions

19
Vapor3.1.10/Package.swift Normal file
View File

@@ -0,0 +1,19 @@
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "smparkinVaporWeb",
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
// 🍃 An expressive, performant, and extensible templating language built for Swift.
.package(url: "https://github.com/vapor/leaf.git", from: "3.0.0"),
],
targets: [
.target(name: "App", dependencies: ["Leaf", "Vapor"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)