mirror of
https://github.com/otaviocc/Triton.git
synced 2026-01-29 19:54:27 +00:00
18 lines
359 B
Swift
18 lines
359 B
Swift
import AccountUpdateRepository
|
|
import Observation
|
|
|
|
@Observable
|
|
public final class AccountUpdateService {
|
|
|
|
// MARK: - Properties
|
|
|
|
private let updateRepository: AccountUpdateRepositoryProtocol
|
|
|
|
// MARK: - Lifecycle
|
|
|
|
init(
|
|
updateRepository: AccountUpdateRepositoryProtocol
|
|
) {
|
|
self.updateRepository = updateRepository
|
|
}
|
|
}
|