Documentation ¶
Overview ¶
Package store stores the results from trybot runs.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ListResult ¶
ListResult is returned from TryBotStore.List().
type TryBotStore ¶
type TryBotStore interface { // Write a single file into the store. Write(ctx context.Context, tryFile trybot.TryFile) error // List returns all the unique CL/patch combinations // that have arrived since 'since'. List(ctx context.Context, since time.Time) ([]ListResult, error) // Get all the results for a given cl and patch number. Get(ctx context.Context, cl types.CL, patch int) ([]GetResult, error) }
TryBotStore stores trybot results.
Click to show internal directories.
Click to hide internal directories.