14 lines
333 B
Swift
14 lines
333 B
Swift
//
|
|
// VehicleServiceProtocol.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 19.01.2025.
|
|
// Copyright © 2025 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
public protocol VehicleServiceProtocol: Sendable {
|
|
|
|
func check(number: String) async throws -> VehicleDto
|
|
func checkAndStore(number: String) async throws
|
|
}
|