Skip to content

Commit 25aa31f

Browse files
committed
make public
1 parent e757ef1 commit 25aa31f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
extension RawRepresentable where Self.RawValue: PostgresDataConvertible {
2-
static var postgresDataType: PostgresDataType {
2+
public static var postgresDataType: PostgresDataType {
33
RawValue.postgresDataType
44
}
55

6-
init?(postgresData: PostgresData) {
6+
public init?(postgresData: PostgresData) {
77
guard let rawValue = RawValue.init(postgresData: postgresData) else {
88
return nil
99
}
1010
self.init(rawValue: rawValue)
1111
}
1212

13-
var postgresData: PostgresData? {
13+
public var postgresData: PostgresData? {
1414
self.rawValue.postgresData
1515
}
1616
}

0 commit comments

Comments
 (0)