Files
ccn/Packages/Persistence/Tests/Utils/Fakes/NotSQLConfiguration.swift
T
2026-08-19 23:19:08 +02:00

14 lines
238 B
Swift

import FluentKit
struct NotSQLConfiguration: DatabaseConfiguration {
var middleware: [any AnyModelMiddleware] = []
func makeDriver(
for databases: Databases
) -> any DatabaseDriver {
NotSQLDriver()
}
}