Categorygithub.com/steadybit/advice-kit/go/advice_kit_api
package
1.0.0
Repository: https://github.com/steadybit/advice-kit.git
Documentation: pkg.go.dev

# README

AdviceKit Go API

This module exposes Go types that you will find helpful when implementing an AdviceKit extension.

The types are generated automatically from the AdviceKit OpenAPI specification.

Installation

Add the following to your go.mod file:

go get github.com/steadybit/advice-kit/go/[email protected]

Usage

import (
	"github.com/steadybit/advice-kit/go/advice_kit_api"
)

AdviceList := advice_kit_api.AdviceList{
    Advice: []advice_kit_api.DescribingEndpointReference{
        {
            "GET",
            "/advice/my-fancy-advice",
        },
    },
}