14 lines
216 B
Swift
14 lines
216 B
Swift
import FluentKit
|
|
|
|
struct NotSQLDriver: DatabaseDriver {
|
|
|
|
func makeDatabase(
|
|
with context: DatabaseContext
|
|
) -> any Database {
|
|
NotSQLDatabase(context: context)
|
|
}
|
|
|
|
func shutdown() {}
|
|
|
|
}
|