11 lines
203 B
Swift
11 lines
203 B
Swift
//
|
|
// EmployeeServiceProtocol.swift
|
|
// EmployeeDirectory
|
|
//
|
|
// Created by Matt Bruce on 3/3/25.
|
|
//
|
|
|
|
public protocol EmployeeServiceProtocol {
|
|
func getUsers(page: Int?) async throws -> Employees
|
|
}
|