Semaphore/db/bolt/runner.go
2024-11-18 01:18:48 +05:00

20 lines
370 B
Go

//go:build !pro
package bolt
import (
"github.com/semaphoreui/semaphore/db"
)
func (d *BoltDb) GetRunner(projectID int, runnerID int) (runner db.Runner, err error) {
return
}
func (d *BoltDb) GetRunners(projectID int, activeOnly bool) (runners []db.Runner, err error) {
return
}
func (d *BoltDb) DeleteRunner(projectID int, runnerID int) (err error) {
return
}