ReadKeep/readeck/Domain/Protocols/PServerInfoRepository.swift

11 lines
215 B
Swift

//
// PServerInfoRepository.swift
// readeck
//
// Created by Ilyas Hallak
protocol PServerInfoRepository {
func checkServerReachability() async -> Bool
func getServerInfo() async throws -> ServerInfo
}