Instance Propertyvapor 4.114.1Vapor
driver
Application+Sessions.swift:59var driver: SessionDriver { get }
var driver: SessionDriver { get }
s5Vapor11ApplicationC8SessionsV6driverAA13SessionDriver_pvp
What are these?7X6EF
import Vapor
Vapor is a framework for building server applications, APIs and websites in Swift. It provides a safe, performant and scalable foundation for building large complex backends.
struct Sessions
final class Application
Core type representing a Vapor application.
protocol SessionDriver : Sendable
Capable of managing CRUD operations for Session
s.
var configuration: SessionsConfiguration { get nonmutating set }
var memory: MemorySessions { get }
var middleware: SessionsMiddleware { get }
@preconcurrency func use(_ makeDriver: @escaping (Application) -> (SessionDriver))
func use(_ provider: Provider)
struct Provider