notebook

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 31, 2023 License: Apache-2.0 Imports: 6 Imported by: 0

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) (*Notebook, error)
}

func NewGetHandler

func NewGetHandler(readModel ReadModel, workspaceReadModel workspace.WorkspaceReadModel) GetHandler

type GetQuery

type GetQuery struct {
	Name        string `validate:"required"`
	WorkspaceID string `validate:"required"`
}

type ListHandler

type ListHandler interface {
	Handle(context.Context, *ListQuery) ([]*Notebook, error)
}

func NewListHandler

func NewListHandler(readModel ReadModel, workspaceReadModel workspace.WorkspaceReadModel) ListHandler

type ListQuery

type ListQuery struct {
	WorkspaceID string `validate:"required"`
}

type Notebook

type Notebook struct {
	Name        string
	WorkspaceID string
	Content     []byte
	Size        int64
	UpdateTime  time.Time
}

Notebook is DTO

type Queries

type Queries struct {
	List ListHandler
	Get  GetHandler
}

func NewQueries

func NewQueries(readModel ReadModel, workspaceReadModel workspace.WorkspaceReadModel) *Queries

type ReadModel

type ReadModel interface {
	ListByWorkspace(ctx context.Context, workspaceID string) ([]*Notebook, error)
	Get(ctx context.Context, workspaceID, name string) (*Notebook, error)
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL