block-employee-directory/EmployeeDirectory/Protocols/EmployeeServiceProtocol.swift
Matt Bruce a517ced1cc initial protocol and implementation
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2025-01-20 17:23:07 -06:00

11 lines
195 B
Swift

//
// EmployeeServiceable.swift
// EmployeeDirectory
//
// Created by Matt Bruce on 1/20/25.
//
public protocol EmployeeServiceProtocol {
func getEmployees() async throws -> [Employee]
}