mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 10:34:27 +00:00
16 lines
297 B
Go
Executable File
16 lines
297 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"go.m3o.com/carbon"
|
|
)
|
|
|
|
// Purchase 1KG (0.001 tonne) of carbon offsets in a single request
|
|
func main() {
|
|
carbonService := carbon.NewCarbonService(os.Getenv("M3O_API_TOKEN"))
|
|
rsp, err := carbonService.Offset(&carbon.OffsetRequest{})
|
|
fmt.Println(rsp, err)
|
|
}
|