Draft: feat login
This commit is contained in:
13
plays/base.go
Normal file
13
plays/base.go
Normal file
@@ -0,0 +1,13 @@
|
||||
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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user