SoXX
802764092e
As mentioned in Issue #11, the folder structure got an overall as some file names Co-authored-by: Fenpaws <soxx@fenpa.ws> Reviewed-on: anthrove/e621-to-graph#14 Reviewed-by: Lennard Brinkhaus <lennard.brinkhaus@noreply.localhost> Co-authored-by: SoXX <fenpaws@noreply.localhost> Co-committed-by: SoXX <fenpaws@noreply.localhost>
25 lines
520 B
Go
25 lines
520 B
Go
package e621
|
|
|
|
import (
|
|
e621 "git.dragse.it/anthrove/e621-to-graph/internal/e621/scheduler"
|
|
"golang.org/x/time/rate"
|
|
)
|
|
|
|
// Client represents the e621 API client.
|
|
type Client struct {
|
|
apiKey string
|
|
username string
|
|
scheduler *e621.Scheduler
|
|
}
|
|
|
|
// NewClient creates a new e621 API client.
|
|
func NewClient(apiKey string, username string) *Client {
|
|
scheduler := e621.NewScheduler()
|
|
scheduler.SetLimiter(rate.NewLimiter(1, 2))
|
|
return &Client{
|
|
apiKey: apiKey,
|
|
username: username,
|
|
scheduler: scheduler,
|
|
}
|
|
}
|