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>
15 lines
487 B
Go
15 lines
487 B
Go
package e621
|
|
|
|
import (
|
|
"fmt"
|
|
"git.dragse.it/anthrove/e621-to-graph/internal/e621/scheduler"
|
|
"git.dragse.it/anthrove/e621-to-graph/pkg/e621/model"
|
|
)
|
|
|
|
// GetUserInfo retrieves the users information from e621 API.
|
|
func (c *Client) GetUserInfo(username string) func() (model.E621User, error) {
|
|
URIPath := fmt.Sprintf("users/%s.json", username)
|
|
e621Task := NewE621ApiTask[model.E621User](URIPath)
|
|
return scheduler.Schedule[model.E621User](c.scheduler, e621Task, c.username, c.apiKey)
|
|
}
|