Skip to content

Commit

Permalink
Initial commit: swift package init. Let us change the world with this…
Browse files Browse the repository at this point in the history
… groundbreaking crypto wallet focused on usability and security.
  • Loading branch information
CyonAlexRDX committed Jun 30, 2022
0 parents commit ccaf2ce
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/config/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "babylon-wallet-swift",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "babylon-wallet-swift",
targets: ["babylon-wallet-swift"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "babylon-wallet-swift",
dependencies: []),
.testTarget(
name: "babylon-wallet-swiftTests",
dependencies: ["babylon-wallet-swift"]),
]
)
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# babylon-wallet-swift

A description of this package.
6 changes: 6 additions & 0 deletions Sources/babylon-wallet-swift/babylon_wallet_swift.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
public struct babylon_wallet_swift {
public private(set) var text = "Hello, World!"

public init() {
}
}
11 changes: 11 additions & 0 deletions Tests/babylon-wallet-swiftTests/babylon_wallet_swiftTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import XCTest
@testable import babylon_wallet_swift

final class babylon_wallet_swiftTests: XCTestCase {
func testExample() throws {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(babylon_wallet_swift().text, "Hello, World!")
}
}

0 comments on commit ccaf2ce

Please sign in to comment.