Initial commit

This commit is contained in:
Wira Basalamah
2026-04-24 04:55:24 +07:00
commit 8f0b001501
128 changed files with 9366 additions and 0 deletions

View File

@ -0,0 +1,16 @@
//
// ApduCallback.swift
// Emoney Info
//
// Created by Wira Irawan on 24/07/24.
//
import Foundation
import CoreNFC
protocol ApduCallback {
func connected(unifiedNfcApi : UnifiedNfcApi)
func felicaConnected(unifiedNfcApi : UnifiedNfcApi, tag : NFCFeliCaTag)
func complete(emoney: Emoney)
func failed(error: NSError)
}