Skip to content

Commit

Permalink
feat(storage): make StorageConfiguration init public (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
fadoscha authored Aug 23, 2021
1 parent f398162 commit 4271b5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/ios/Plugin/Storage.swift
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import Foundation

public struct StorageConfiguration {
enum Group {
public enum Group {
case named(String), cordovaNativeStorage
}

let group: Group

init(for group: Group = .named("CapacitorStorage")) {
public init(for group: Group = .named("CapacitorStorage")) {
self.group = group
}
}
Expand Down

0 comments on commit 4271b5d

Please sign in to comment.