Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wangzhizhou/papermc

SDK For PaperMC include: DownloadAPI and HangarAPI
https://github.com/wangzhizhou/papermc

Last synced: about 2 months ago
JSON representation

SDK For PaperMC include: DownloadAPI and HangarAPI

Awesome Lists containing this project

README

        

# PaperMC

API for [PaperMC][PaperMC] and Plugin Platform [Hangar][Hangar], include:

1. [PaperMCAPI][PaperMCAPI] - [OpenAPI Spec][PaperMCAPI OpenAPI Spec]

2. [HangarAPI][HangarAPI] - [OpenAPI Spec][Hangar OpenAPI Spec]

## Usage

```swift

import PackageDescription

let package = Package(
...
dependencies: [
.package(url: "https://github.com/wangzhizhou/PaperMC.git", branch: "main"),
],
targets: [
.target(
name: "Your Target Name",
dependencies: [
.product(name: "PaperMCAPI", package: "PaperMC"),
.product(name: "HangarAPI", package: "PaperMC"),
...
]),
]
...
)

```

[PaperMC]:
[Hangar]:

[PaperMCAPI]:
[PaperMCAPI OpenAPI Spec]:

[HangarAPI]:
[Hangar OpenAPI Spec]: