mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
14 lines
308 B
Go
14 lines
308 B
Go
package db_lib
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ansible-semaphore/semaphore/pkg/task_logger"
|
|
)
|
|
|
|
type LocalApp interface {
|
|
SetLogger(logger task_logger.Logger) task_logger.Logger
|
|
InstallRequirements() error
|
|
Run(args []string, environmentVars *[]string, inputs map[string]string, cb func(*os.Process)) error
|
|
}
|