Files
ccn/Packages/Persistence/Tests/Utils/Fakes/NotSQLDriver.swift
T

14 lines
216 B
Swift
Raw Normal View History

2026-08-19 22:55:00 +02:00
import FluentKit
struct NotSQLDriver: DatabaseDriver {
func makeDatabase(
with context: DatabaseContext
) -> any Database {
NotSQLDatabase(context: context)
}
func shutdown() {}
}