Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.13 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.13 KB

Aries Framework Go - SDK Binding

The project can be used as a framework to build Aries agents using Go programming language. The framework is highly configurable and comes with default implementations.

Steps

Start writing Aries agents in few simple steps.

  1. Create a framework
  2. Get the Context from the framework
  3. Create the client by passing the context

Example

// create the framework
framework := aries.New()

// get the context
ctx := framework.Context()

// initialize the aries clients
didexchangeClient, err := didexchange.New(ctx)

References

Project GoDoc

Framework Example

Aries Client Example