package e621 import ( "e621_to_neo4j/e621/models" "fmt" ) // GetUserInfo retrieves the users information from e621 API. func (c *Client) GetUserInfo(username string) func() (models.E621User, error) { URIPath := fmt.Sprintf("users/%s.json", username) e621Task := NewE621ApiTask[models.E621User](URIPath) return Schedule[models.E621User](c.scheduler, e621Task, c.username, c.apiKey) }