Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.44 KB

README.md

File metadata and controls

53 lines (35 loc) · 1.44 KB

ERNEST PROVIDER

master : CircleCI | develop : CircleCI

This library aims to be a wrapper on top of provider go sdk, so it concentrates all provider specific logic on ernest.

Example:

package main

import(
  "fmt"

	"github.com/ernestio/ernestprovider"
	"github.com/ernestio/ernestprovider/network"
)

func main() {
	event := network.New("network.create.provider", "{....}")

	subject, data := ernestprovider.Handle(&event)
	fmt.Println("Response: ")
	fmt.Println(subject)
	fmt.Println(data)
}

Using it

You can start by importing

Contributing

Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.

Moreover, if your pull request contains patches or features, you must include relevant unit tests.

Versioning

For transparency into our release cycle and in striving to maintain backward compatibility, this project is maintained under the Semantic Versioning guidelines.

Copyright and License

Code and documentation copyright since 2015 ernest.io authors.

Code released under the Mozilla Public License Version 2.0.