Files
proxypin/ios/ProxyPin/vpn/socket/CloseableConnection.swift
2024-10-09 02:30:02 +08:00

15 lines
225 B
Swift

//
// CloseableConnection.swift
// ProxyPin
//
// Created by wanghongen on 2024/9/17.
//
import Foundation
protocol CloseableConnection {
/// Closes the connection
func closeConnection(connection: Connection)
}