Versions in this module Expand all Collapse all v1 v1.4.1 Jan 3, 2024 v1.4.0 Jan 3, 2024 Changes in this version + type Client struct + func (c *Client) GetProjectRepos(ctx context.Context, projectID int) (repositories []ResultRepo, err error) + func (c *Client) GetUserID(ctx context.Context) (userID int, err error) + func (c *Client) GetUserProjectIDs(ctx context.Context, userID int) (projects []ResultProject, err error) + func (c *Client) Invoke(ctx context.Context, action string, body M) (result Result, err error) + type Hosting struct + func (h Hosting) List(ctx context.Context, opts gitdump.HostingOptions) (out []gitdump.HostingRepo, err error) + type M = map[string]any + type Result struct + Response struct{ ... } + type ResultProject struct + ID int + Name string + type ResultRepo struct + HttpsUrl string + ID int + Name string