mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
9 lines
97 B
Go
9 lines
97 B
Go
package lib
|
|
|
|
import "os/exec"
|
|
|
|
type Logger interface {
|
|
Log(msg string)
|
|
LogCmd(cmd *exec.Cmd)
|
|
}
|