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