Versions in this module Expand all Collapse all v0 v0.2.0 Jan 29, 2023 Changes in this version + type Client struct + func New(cfg *Config) *Client + func (cl *Client) CreateProject(p *CreateProjectPayload) (*models.Project, error) + func (cl *Client) DeleteProject(id string) error + func (cl *Client) GetProject(id string) (*models.Project, error) + func (cl *Client) ListProjects() (models.Projects, error) + func (cl *Client) UpdateProject(id string, p *UpdateProjectPayload) (*models.Project, error) + type Config struct + Token string + type CreateProjectPayload struct + Color *string + IsFavorite *bool + Name string + ParentID *string + ViewStyle *string + type UpdateProjectPayload struct + Color *string + IsFavorite *bool + Name *string + ViewStyle *string