# README
ActionKit Go API
This module exposes Go types that you will find helpful when implementing an ActionKit extension.
The types are generated automatically from the ActionKit OpenAPI specification.
Installation
Add the following to your go.mod
file:
go get github.com/steadybit/action-kit/go/action_kit_api
Usage
import (
"github.com/steadybit/action-kit/go/action_kit_api"
)
actionList := action_kit_api.ActionList{
Actions: []action_kit_api.DescribingEndpointReference{
{
"GET",
"/actions/rollout-restart",
},
},
}