package plays import "github.com/go-resty/resty/v2" type Base struct { client *resty.Client } func NewBase(client *resty.Client) *Base { return &Base{ client: client, } }