mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-06 08:35:06 +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)
|
|
}
|