trimming unneeded imports of modules

This commit is contained in:
Jonathan Guthrie 2016-10-06 11:23:07 -04:00
parent 500c302c05
commit 11a283d2bc
7 changed files with 0 additions and 18 deletions

View File

@ -6,8 +6,6 @@
//
//
import Foundation
open class StORMConnect {
@ -32,9 +30,5 @@ open class StORMConnect {
self.datasource = ds
self.credentials = StORMDataSourceCredentials(host: host, port: port, user: username, pass: password)
}
}

View File

@ -6,8 +6,6 @@
//
//
import Foundation
public struct StORMCursor {
public var limit: Int = 50
public var offset: Int = 0

View File

@ -6,8 +6,6 @@
//
//
import Foundation
public enum StORMDataSource {
case Postgres
case MySQL

View File

@ -6,8 +6,6 @@
//
//
import Foundation
public struct StORMDataSourceCredentials {
public var host: String = "localhost"
public var port: Int = 0

View File

@ -6,8 +6,6 @@
//
//
import Foundation
// add options as they are determined
enum StORMDataSourceOptions {

View File

@ -6,8 +6,6 @@
//
//
import Foundation
public struct StORMDataSourceJoin {
public var table: String = ""
public var direction: StORMJoinType

View File

@ -6,8 +6,6 @@
//
//
import Foundation
open class StORMResultSet {
public var rows: [StORMRow] = [StORMRow]()
public var cursorData: StORMCursor = StORMCursor()