orgs¶
Package github.com/emergent-company/emergent.memory/apps/server/pkg/sdk/orgs
The orgs client manages Emergent organizations — the top-level containers for projects.
Methods¶
func (c *Client) List(ctx context.Context) ([]Organization, error)
func (c *Client) Get(ctx context.Context, id string) (*Organization, error)
func (c *Client) Create(ctx context.Context, req *CreateOrganizationRequest) (*Organization, error)
func (c *Client) Delete(ctx context.Context, id string) error
Key Types¶
Organization¶
type Organization struct {
ID string
Name string
Slug string
CreatedAt time.Time
UpdatedAt time.Time
}