mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-29 06:59:46 +08:00
15 lines
225 B
Swift
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)
|
|
}
|