github.com/akamai/AkamaiOPEN-edgegrid-golang/v2@v2.17.0/README.md (about)

     1  # Akamai OPEN EdgeGrid for GoLang v2
     2  
     3  This module is presently in development and provides Akamai REST API support for the Akamai Terraform Provider. It does **not** yet implement the full scope of Akamai endpoints. It is recommended to continue to use the the v1 API.
     4  
     5  ## Backward Compatibility
     6  This module is not backward compatible with the previous version.
     7  
     8  ## Concurrent Usage
     9  The packages of library can be imported alongside the v1 library versions without conflict, for example:
    10  
    11  ```
    12  import (
    13  	"github.com/akamai/AkamaiOPEN-edgegrid-golang/papi-v1"
    14  	papiv2 "github.com/akamai/AkamaiOPEN-edgegrid-golang/v2/pkg/papi"
    15  )
    16  ```