Skip to content
/ alexa Public

A library for writing handlers for alexa skill requests.

License

Notifications You must be signed in to change notification settings

benjic/alexa

Repository files navigation

alexa

A set of utilities for handling Amazon Alexa requests.

Build Status codecov Go Report Card GoDoc

This library provides a way of defining handlers for the various Alexa requests. A handler is required to accept typed response and request objects to ensure the response respects the amazon expected values.

func main() {
  http.ListenAndServe(":8080", &alexa.Handler{
    LaunchRequest: func(resp alexa.Response, req *alexa.LaunchRequest) error {
      resp.PlainText("Hello world!")
      return nil
    },
  })
}

About

A library for writing handlers for alexa skill requests.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages