add Player model

This commit is contained in:
Andrew Glaze
2025-05-18 16:53:08 -04:00
parent a93308afb1
commit 62260ffc73
11 changed files with 390 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
import Vapor
struct ApiController: RouteCollection {
func boot(routes: any RoutesBuilder) throws {
let group = routes.grouped("latest", "api", "index.php")
try group.register(collection: ToolController())
}
}