Remove unused files (#392)

This commit is contained in:
Anbraten 2021-10-02 10:25:26 +02:00 committed by GitHub
parent 44ae414bce
commit ba0286d055
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 5 deletions

View file

@ -10,15 +10,20 @@ import (
type Engine interface {
// Setup the pipeline environment.
Setup(context.Context, *Config) error
// Start the pipeline step.
Exec(context.Context, *Step) error
// Kill the pipeline step.
Kill(context.Context, *Step) error
// Wait for the pipeline step to complete and returns
// the completion results.
Wait(context.Context, *Step) (*State, error)
// Tail the pipeline step logs.
Tail(context.Context, *Step) (io.ReadCloser, error)
// Destroy the pipeline environment.
Destroy(context.Context, *Config) error
}

View file

@ -1 +0,0 @@
package analysis

View file

@ -1 +0,0 @@
package coverage

View file

@ -1 +0,0 @@
package multipart

View file

@ -1 +0,0 @@
package selenium

View file

@ -1 +0,0 @@
package terminal