25 lines
464 B
Swift
25 lines
464 B
Swift
//
|
|
// VehicleService.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 19.01.2025.
|
|
// Copyright © 2025 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
public final class VehicleService {
|
|
|
|
public init() {}
|
|
}
|
|
|
|
extension VehicleService: VehicleServiceProtocol {
|
|
|
|
public func check(number: String) async throws -> VehicleDto {
|
|
|
|
VehicleDto()
|
|
}
|
|
|
|
public func checkAndStore(number: String) async throws {
|
|
|
|
}
|
|
}
|