14 lines
179 B
Go
14 lines
179 B
Go
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,
|
|
}
|
|
}
|