Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Pururun committed Aug 29, 2024
1 parent 480fd29 commit a8b5674
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data class ApiEndpointOverride(
val hostname: String,
val port: Int = CUSTOM_ENDPOINT_HTTPS_PORT,
val disableAddressCache: Boolean = true,
val disableTls: Boolean = false
val disableTls: Boolean = false,
) : Parcelable {
companion object {
const val CUSTOM_ENDPOINT_HTTPS_PORT = 443
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ data class DaemonConfig(
val rpcSocket: File,
val filesDir: File,
val cacheDir: File,
val apiEndpointOverride: ApiEndpointOverride?
val apiEndpointOverride: ApiEndpointOverride?,
)
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ val vpnServiceModule = module {
ApiEndpointOverride(BuildConfig.API_ENDPOINT)
} else {
null
}
},
)
}
}

0 comments on commit a8b5674

Please sign in to comment.