summaryrefslogtreecommitdiff
path: root/Taler
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-08-02 01:48:32 -0400
committerJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-08-02 01:57:39 -0400
commit22daf3abceee657ad6e6a035fd6c274fd4bb994d (patch)
tree498e5e3e8e46f59f164cbe3c4826c3e3ccbd60d2 /Taler
parentf8728874412137d30d5a1d38970ffaabf8fd6e95 (diff)
downloadtaler-ios-22daf3abceee657ad6e6a035fd6c274fd4bb994d.tar.gz
taler-ios-22daf3abceee657ad6e6a035fd6c274fd4bb994d.tar.bz2
taler-ios-22daf3abceee657ad6e6a035fd6c274fd4bb994d.zip
set up linking with command library
Diffstat (limited to 'Taler')
-rw-r--r--Taler/AppDelegate.swift3
1 files changed, 3 insertions, 0 deletions
diff --git a/Taler/AppDelegate.swift b/Taler/AppDelegate.swift
index 8728a09..ab96d31 100644
--- a/Taler/AppDelegate.swift
+++ b/Taler/AppDelegate.swift
@@ -7,6 +7,7 @@
//
import UIKit
+import TalerWallet
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
@@ -15,6 +16,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
+ let num = Amount.init(currency: "EUR", value: 1, fraction: 99)
+ print(num)
return true
}