Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetHandler ¶
type GetHandler interface {
Handle(context.Context, *GetQuery) (*NotebookServer, error)
}
func NewGetHandler ¶
func NewGetHandler(readModel ReadModel, runtime domain.Runtime) GetHandler
type ListHandler ¶
type ListHandler interface {
Handle(context.Context, *ListQuery) ([]NotebookServer, error)
}
func NewListHandler ¶
func NewListHandler(readModel ReadModel, runtime domain.Runtime) ListHandler
type NotebookServer ¶
type NotebookServer struct {
NotebookSettings
Status string
AccessURL string
}
type NotebookSettings ¶
type Queries ¶
type Queries struct {
List ListHandler
Get GetHandler
}
Click to show internal directories.
Click to hide internal directories.