/gorsa

Primary LanguageGo

gorsa

gorsa is a library written in Golang that helps you with the RSA Security Analytics REST API.

Usage

import "github.com/fallais/gorsa"

Construct a new RSA client, then use the various services on the client to access different parts of the RSA SA API. For example:

client := gorsa.NewClient(nil)

If you want to provide your own http.Client, you can do it :

httpClient := &http.Client{}
client := gorsa.NewClient(httpClient)