github.com/akamai/AkamaiOPEN-edgegrid-golang/v8@v8.1.0/README.md (about)

     1  # Akamai OPEN EdgeGrid for GoLang v8
     2  
     3  ![Build Status](https://github.com/akamai/akamaiOPEN-edgegrid-golang/actions/workflows/checks.yml/badge.svg)
     4  [![Go Report Card](https://goreportcard.com/badge/github.com/akamai/AkamaiOPEN-edgegrid-golang/v8)](https://goreportcard.com/report/github.com/akamai/AkamaiOPEN-edgegrid-golang/v8)
     5  ![GitHub release (latest by date)](https://img.shields.io/github/v/release/akamai/akamaiOPEN-edgegrid-golang)
     6  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
     7  [![GoDoc](https://pkg.go.dev/badge/github.com/akamai/akamaiOPEN-edgegrid-golang?utm_source=godoc)](https://pkg.go.dev/github.com/akamai/AkamaiOPEN-edgegrid-golang/v8)
     8  
     9  This module is presently in active development and provides Akamai REST API support for the Akamai Terraform Provider.
    10  
    11  ## Backward Compatibility
    12  
    13  This module is not backward compatible with the version `v1`.
    14  
    15  Originally branch `master` was representing version `v1`. Now it is representing the latest version `v8` and
    16  version `v1`
    17  was moved to dedicated `v1` branch.
    18  
    19  ## Concurrent Usage
    20  
    21  The packages of library can be imported alongside the `v1` library versions without conflict, for example:
    22  
    23  ```
    24  import (
    25  	papiv1 "github.com/akamai/AkamaiOPEN-edgegrid-golang/papi-v1"
    26  	papi "github.com/akamai/AkamaiOPEN-edgegrid-golang/v8/pkg/papi"
    27  )
    28  ```