github.com/hyperledger/aries-framework-go@v0.3.2/pkg/framework/aries/doc.go (about) 1 /* 2 Copyright SecureKey Technologies Inc. All Rights Reserved. 3 4 SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /* 8 Package aries provides a pluggable dependency framework, where implementors can customize primitives via 9 Service Provider Interfaces (SPIs). The framework comes with a "batteries included" model where default 10 primitives are included. The framework holds a context that can be used to create aries clients. 11 12 Usage: 13 // create the framework 14 framework := aries.New() 15 16 // get the context 17 ctx := framework.Context() 18 19 // initialize the aries clients 20 didexchangeClient, err := didexchange.New(ctx) 21 */ 22 package aries