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