11 lines
215 B
Swift
11 lines
215 B
Swift
//
|
|
// PServerInfoRepository.swift
|
|
// readeck
|
|
//
|
|
// Created by Ilyas Hallak
|
|
|
|
protocol PServerInfoRepository {
|
|
func checkServerReachability() async -> Bool
|
|
func getServerInfo() async throws -> ServerInfo
|
|
}
|