Documentation ¶
Index ¶
- Variables
- type Bee
- type CreateFactCommand
- type CreateFactSettings
- type CreateTodoCommand
- type CreateTodoSettings
- type DeleteConversationCommand
- type DeleteConversationSettings
- type DeleteFactCommand
- type DeleteFactSettings
- type DeleteTodoCommand
- type DeleteTodoSettings
- type EndConversationCommand
- type EndConversationSettings
- type GetConversationCommand
- type GetConversationSettings
- type GetFactCommand
- type GetFactSettings
- type GetTodoCommand
- type GetTodoSettings
- type ListConversationsCommand
- type ListConversationsSettings
- type ListFactsCommand
- type ListFactsSettings
- type ListTodosCommand
- type ListTodosSettings
- type RetryConversationCommand
- type RetryConversationSettings
- type UpdateFactCommand
- type UpdateFactSettings
- type UpdateTodoCommand
- type UpdateTodoSettings
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type CreateFactCommand ¶
type CreateFactCommand struct {
*cmds.CommandDescription
}
CreateFactCommand
func NewCreateFactCommand ¶
func NewCreateFactCommand() (*CreateFactCommand, error)
func (*CreateFactCommand) RunIntoGlazeProcessor ¶
func (c *CreateFactCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type CreateFactSettings ¶
type CreateTodoCommand ¶
type CreateTodoCommand struct {
*cmds.CommandDescription
}
CreateTodoCommand
func NewCreateTodoCommand ¶
func NewCreateTodoCommand() (*CreateTodoCommand, error)
func (*CreateTodoCommand) RunIntoGlazeProcessor ¶
func (c *CreateTodoCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type CreateTodoSettings ¶
type DeleteConversationCommand ¶
type DeleteConversationCommand struct {
*cmds.CommandDescription
}
DeleteConversationCommand
func NewDeleteConversationCommand ¶
func NewDeleteConversationCommand() (*DeleteConversationCommand, error)
func (*DeleteConversationCommand) Run ¶
func (c *DeleteConversationCommand) Run( ctx context.Context, parsedLayers *layers.ParsedLayers, ) error
type DeleteConversationSettings ¶
type DeleteConversationSettings struct {
ConversationID int `glazed.parameter:"conversation_id"`
}
type DeleteFactCommand ¶
type DeleteFactCommand struct {
*cmds.CommandDescription
}
DeleteFactCommand
func NewDeleteFactCommand ¶
func NewDeleteFactCommand() (*DeleteFactCommand, error)
func (*DeleteFactCommand) Run ¶
func (c *DeleteFactCommand) Run( ctx context.Context, parsedLayers *layers.ParsedLayers, ) error
type DeleteFactSettings ¶
type DeleteFactSettings struct {
FactID int `glazed.parameter:"fact_id"`
}
type DeleteTodoCommand ¶
type DeleteTodoCommand struct {
*cmds.CommandDescription
}
DeleteTodoCommand
func NewDeleteTodoCommand ¶
func NewDeleteTodoCommand() (*DeleteTodoCommand, error)
func (*DeleteTodoCommand) Run ¶
func (c *DeleteTodoCommand) Run( ctx context.Context, parsedLayers *layers.ParsedLayers, ) error
type DeleteTodoSettings ¶
type DeleteTodoSettings struct {
TodoID int `glazed.parameter:"todo_id"`
}
type EndConversationCommand ¶
type EndConversationCommand struct {
*cmds.CommandDescription
}
EndConversationCommand
func NewEndConversationCommand ¶
func NewEndConversationCommand() (*EndConversationCommand, error)
func (*EndConversationCommand) Run ¶
func (c *EndConversationCommand) Run( ctx context.Context, parsedLayers *layers.ParsedLayers, ) error
type EndConversationSettings ¶
type EndConversationSettings struct {
ConversationID int `glazed.parameter:"conversation_id"`
}
type GetConversationCommand ¶
type GetConversationCommand struct {
*cmds.CommandDescription
}
GetConversationCommand
func NewGetConversationCommand ¶
func NewGetConversationCommand() (*GetConversationCommand, error)
func (*GetConversationCommand) RunIntoGlazeProcessor ¶
func (c *GetConversationCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type GetConversationSettings ¶
type GetFactCommand ¶
type GetFactCommand struct {
*cmds.CommandDescription
}
GetFactCommand
func NewGetFactCommand ¶
func NewGetFactCommand() (*GetFactCommand, error)
func (*GetFactCommand) RunIntoGlazeProcessor ¶
func (c *GetFactCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type GetFactSettings ¶
type GetFactSettings struct {
FactID int `glazed.parameter:"fact_id"`
}
type GetTodoCommand ¶
type GetTodoCommand struct {
*cmds.CommandDescription
}
GetTodoCommand
func NewGetTodoCommand ¶
func NewGetTodoCommand() (*GetTodoCommand, error)
func (*GetTodoCommand) RunIntoGlazeProcessor ¶
func (c *GetTodoCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type GetTodoSettings ¶
type GetTodoSettings struct {
TodoID int `glazed.parameter:"todo_id"`
}
type ListConversationsCommand ¶
type ListConversationsCommand struct {
*cmds.CommandDescription
}
func NewListConversationsCommand ¶
func NewListConversationsCommand() (*ListConversationsCommand, error)
func (*ListConversationsCommand) RunIntoGlazeProcessor ¶
func (c *ListConversationsCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type ListFactsCommand ¶
type ListFactsCommand struct {
*cmds.CommandDescription
}
ListFactsCommand
func NewListFactsCommand ¶
func NewListFactsCommand() (*ListFactsCommand, error)
func (*ListFactsCommand) RunIntoGlazeProcessor ¶
func (c *ListFactsCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type ListFactsSettings ¶
type ListTodosCommand ¶
type ListTodosCommand struct {
*cmds.CommandDescription
}
ListTodosCommand
func NewListTodosCommand ¶
func NewListTodosCommand() (*ListTodosCommand, error)
func (*ListTodosCommand) RunIntoGlazeProcessor ¶
func (c *ListTodosCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type ListTodosSettings ¶
type RetryConversationCommand ¶
type RetryConversationCommand struct {
*cmds.CommandDescription
}
RetryConversationCommand
func NewRetryConversationCommand ¶
func NewRetryConversationCommand() (*RetryConversationCommand, error)
func (*RetryConversationCommand) Run ¶
func (c *RetryConversationCommand) Run( ctx context.Context, parsedLayers *layers.ParsedLayers, ) error
type RetryConversationSettings ¶
type RetryConversationSettings struct {
ConversationID int `glazed.parameter:"conversation_id"`
}
type UpdateFactCommand ¶
type UpdateFactCommand struct {
*cmds.CommandDescription
}
UpdateFactCommand
func NewUpdateFactCommand ¶
func NewUpdateFactCommand() (*UpdateFactCommand, error)
func (*UpdateFactCommand) RunIntoGlazeProcessor ¶
func (c *UpdateFactCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type UpdateFactSettings ¶
type UpdateTodoCommand ¶
type UpdateTodoCommand struct {
*cmds.CommandDescription
}
UpdateTodoCommand
func NewUpdateTodoCommand ¶
func NewUpdateTodoCommand() (*UpdateTodoCommand, error)
func (*UpdateTodoCommand) RunIntoGlazeProcessor ¶
func (c *UpdateTodoCommand) RunIntoGlazeProcessor( ctx context.Context, parsedLayers *layers.ParsedLayers, gp middlewares.Processor, ) error
type UpdateTodoSettings ¶
Click to show internal directories.
Click to hide internal directories.