IngmarStein / miele-go

Go client for the Miele 3rd Party API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Golang Miele 3rd Party API

Go client for the Miele 3rd Party API

Usage

package main

import (
    "fmt"
    "os"

    "github.com/ingmarstein/miele-go/miele"
)

func main() {
    token := os.Getenv("MIELE_AUTH_TOKEN")
    // You may optionally include your own http client
    client := miele.NewClient(nil, token)
    devices, err := client.ListDevices(miele.ListDevicesRequest{})
    if err != nil {
    	panic(err)
    }
    fmt.Println(devices)
}

About

Go client for the Miele 3rd Party API

License:MIT License


Languages

Language:Go 98.6%Language:Makefile 1.4%