Skip to content

Commit

Permalink
Changed let to var (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
lodenrogue authored Jul 22, 2022
1 parent bcace4f commit f8bd73b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/MySQLKit/MySQLConfiguration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
@_exported import struct NIOSSL.TLSConfiguration

public struct MySQLConfiguration {
public let address: () throws -> SocketAddress
public let username: String
public let password: String
public let database: String?
public let tlsConfiguration: TLSConfiguration?
public var address: () throws -> SocketAddress
public var username: String
public var password: String
public var database: String?
public var tlsConfiguration: TLSConfiguration?

/// IANA-assigned port number for MySQL
/// `UInt16(getservbyname("mysql", "tcp").pointee.s_port).byteSwapped`
Expand Down

0 comments on commit f8bd73b

Please sign in to comment.