https://github.com/eclipse-iofog/iofog-go-sdk
https://github.com/eclipse-iofog/iofog-go-sdk
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eclipse-iofog/iofog-go-sdk
- Owner: eclipse-iofog
- License: epl-2.0
- Created: 2018-03-22T10:44:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-29T16:30:47.000Z (over 2 years ago)
- Last Synced: 2026-01-12T03:40:06.706Z (7 months ago)
- Language: Go
- Size: 11.6 MB
- Stars: 8
- Watchers: 8
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING
- License: LICENSE
Awesome Lists containing this project
README
# ioFog Go SDK
This SDK contains a set of Golang packages developers can use for the purposes of:
* Developing your own edge microservices that run on ioFog Edge Compute Networks
* Interacting with ioFog Controller REST API
#### Golang v1.18
The SDK is tested against Golang v1.18 environments.
## Packages
The following is a high-level overview of the functionality provided by each package.
Each package contains its own README.md so please refer to those for further details.
#### Microservices
The `microservices` package contains functionality required to implement edge microservices that run on ioFog Edge
Compute Networks. This includes functionality to access microservice configuration, connecting to the control signal
websocket, connecting to the messages websocket, and being able to receive and post data messages via REST.
#### Client
The `client` package contains an HTTP client to use with ioFog Controller's REST API. You can view see the full REST API
specification at [iofog.org](https://iofog.org/docs/1.3.0/controllers/rest-api.html).
#### Deploy applications
The `deployapps` package contains executors to deploy iofog applications and microservices using the `client` package.
This package is used by `iofogctl` and `iofog-operator` to deploy applications and microservices based on yaml
configuration files.