mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 00:31:03 +01:00
20 lines
366 B
Go
20 lines
366 B
Go
//go:build !pro
|
|
|
|
package sql
|
|
|
|
import (
|
|
"github.com/semaphoreui/semaphore/db"
|
|
)
|
|
|
|
func (d *SqlDb) GetRunner(projectID int, runnerID int) (runner db.Runner, err error) {
|
|
return
|
|
}
|
|
|
|
func (d *SqlDb) GetRunners(projectID int, activeOnly bool) (runners []db.Runner, err error) {
|
|
return
|
|
}
|
|
|
|
func (d *SqlDb) DeleteRunner(projectID int, runnerID int) (err error) {
|
|
return
|
|
}
|