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