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

14 lines
216 B
Swift
Raw Normal View History

import FluentKit
struct NotSQLDriver: DatabaseDriver {
func makeDatabase(
with context: DatabaseContext
) -> any Database {
NotSQLDatabase(context: context)
}
func shutdown() {}
}