Skip to content

Commit e85869d

Browse files
gh-action-runnergh-action-runner
authored andcommitted
Squashed 'apollo-ios/' changes from 39fea761..b0007f91
b0007f91 Custom SQLiteDatabase Implementations (#664) git-subtree-dir: apollo-ios git-subtree-split: b0007f917ae773fdaf4fe8222a324230eb2affe5
1 parent 3600d7a commit e85869d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Sources/ApolloSQLite/SQLiteDatabase.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ import Apollo
66
public struct DatabaseRow {
77
let cacheKey: CacheKey
88
let storedInfo: String
9+
10+
public init(cacheKey: CacheKey, storedInfo: String) {
11+
self.cacheKey = cacheKey
12+
self.storedInfo = storedInfo
13+
}
914
}
1015

1116
public enum SQLiteError: Error, CustomStringConvertible {

0 commit comments

Comments
 (0)