https://github.com/dankinsoid/swift-opensearch
OpenSearch API client written in swift
https://github.com/dankinsoid/swift-opensearch
Last synced: 10 months ago
JSON representation
OpenSearch API client written in swift
- Host: GitHub
- URL: https://github.com/dankinsoid/swift-opensearch
- Owner: dankinsoid
- License: mit
- Created: 2024-05-01T08:49:36.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-01T07:40:35.000Z (over 1 year ago)
- Last Synced: 2025-02-01T08:27:09.346Z (over 1 year ago)
- Language: Swift
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SwiftOpenSearch
[](https://travis-ci.org/dankinsoid/SwiftOpenSearch)
[](https://cocoapods.org/pods/SwiftOpenSearch)
[](https://cocoapods.org/pods/SwiftOpenSearch)
[](https://cocoapods.org/pods/SwiftOpenSearch)
## Description
This repository provides
## Example
```swift
```
## Usage
## Installation
1. [Swift Package Manager](https://github.com/apple/swift-package-manager)
Create a `Package.swift` file.
```swift
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/SwiftOpenSearch.git", from: "0.0.1")
],
targets: [
.target(name: "SomeProject", dependencies: ["SwiftOpenSearch"])
]
)
```
```ruby
$ swift build
```
2. [CocoaPods](https://cocoapods.org)
Add the following line to your Podfile:
```ruby
pod 'SwiftOpenSearch'
```
and run `pod update` from the podfile directory first.
## Author
dankinsoid, voidilov@gmail.com
## License
SwiftOpenSearch is available under the MIT license. See the LICENSE file for more info.