//
//  icon.swift
//  icon
//
//  Created by Andrey Taryanik on 25.03.2026.
//

import AppIntents

struct icon: AppIntent {
    static var title: LocalizedStringResource { "icon" }
    
    func perform() async throws -> some IntentResult {
        return .result()
    }
}
