16 lines
342 B
Swift
16 lines
342 B
Swift
//
|
|
// EmployeeServiceable.swift
|
|
// EmployeeDirectory
|
|
//
|
|
// Created by Matt Bruce on 1/20/25.
|
|
//
|
|
|
|
|
|
/// This will be the interface for the API for Employees
|
|
public protocol EmployeeServiceProtocol {
|
|
|
|
/// This will get a list of all employees
|
|
/// - Returns: An Employees struct
|
|
func getEmployees() async throws -> Employees
|
|
}
|