The core library of Teco, an open-source Tencent Cloud SDK for Swift.
This package provides common functionalities around calling Tencent Cloud APIs, in the following products:
TecoCore
. This provides helpers for calling Tencent Cloud API v3.TecoSigner
. This provides helpers for using Tencent Cloud v1, v3 and COS signing algorithms.
Add the following entry in your Package.swift
:
.package(url: "https://github.com/teco-project/teco-core.git", "0.5.0"..<"0.6.0"),
and TecoCore
dependency to your target:
.target(name: "MyApp", dependencies: [.product(name: "TecoCore", package: "teco-core")]),
If you only want signing functionality, use TecoSigner
instead:
.target(name: "MyApp", dependencies: [.product(name: "TecoSigner", package: "teco-core")]),
Teco Core is released under the Apache 2.0 license. See LICENSE.txt for details.